next method

PrayerTimeModel? next()

Implementation

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