getDownloadedLanguageStatus method
Implementation
Future<DownloadedLanguageStatus?> getDownloadedLanguageStatus() async {
return await _storage.get<DownloadedLanguageStatus>(
_languages.current.isoCode,
DownloadedLanguageStatus.fromJson,
Tables.downloadedTours,
);
}