getCodeCountry method

Future<String> getCodeCountry()

Implementation

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