getTimeFajr method

Future<String> getTimeFajr()

Implementation

Future<String> getTimeFajr() async {
  await _fetchData();
  return _cachedData?['prayer_times']?['Fajr'] ?? 'غير معروف';
}