next method

  1. @override
DateTime next(
  1. DateTime date, {
  2. DateTime? limit,
})
override

Generates the next instance of the given date considering the every base process. If the date is valid for the invalidator, the overrider next will be used instead of the every.

Implementation

@override
DateTime next(DateTime date, {DateTime? limit}) =>
    super.next(date, limit: limit);