getNextDate method

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

Get the next valid date for a notification schedule

Implementation

@override
Future<DateTime?> getNextDate(NotificationSchedule schedule,
    {DateTime? fixedDate}) {
  return LocalNotificationsPlatform.instance
      .getNextDate(schedule, fixedDate: fixedDate);
}