year method
A function that return a list prayertime object
This list prayertime object contain the prayertime information for this year
The zone
should be a Zone object type.
Implementation
Future<List<PrayerTime>> year({required Zone zone}) async {
List<PrayerTime> prayerTime = await eSolatConnector.year(zone: zone);
return prayerTime;
}