getNextDate abstract method

Future<DateTime?> getNextDate(
  1. NotificationSchedule schedule, {
  2. DateTime? fixedDate,
})

Get the next valid date for a notification schedule

Implementation

Future<DateTime?> getNextDate(
  /// A valid Notification schedule model
  NotificationSchedule schedule, {

  /// reference date to simulate a schedule in different time. If null, the reference date will be now
  DateTime? fixedDate,
});