today method

Future<PrayerTime> today({
  1. required Zone zone,
})

A function that return single prayertime object This prayertime object contain the prayertime information for today The zone should be a Zone object type.

Implementation

Future<PrayerTime> today({required Zone zone}) async {
  PrayerTime prayerTime = await eSolatConnector.today(zone: zone);
  return prayerTime;
}