getDateHijriDate method

Future<String> getDateHijriDate()

Implementation

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