next method
Implementation
PrayerTimeModel? next() {
final now = DateTime.now().add(const Duration(days: 1));
return _getPrayerTime(now.day, now.month);
}
PrayerTimeModel? next() {
final now = DateTime.now().add(const Duration(days: 1));
return _getPrayerTime(now.day, now.month);
}