previous method

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

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

Implementation

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