month method

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

A function that return a list prayertime object This list prayertime object contain the prayertime information for this month The zone should be a Zone object type.

Implementation

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