getDownloadedLanguageStatus method

Future<DownloadedLanguageStatus?> getDownloadedLanguageStatus()

Implementation

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