getNextDate method
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);
}