GetLanguagePackString constructor

const GetLanguagePackString({
  1. required String languagePackDatabasePath,
  2. required String localizationTarget,
  3. required String languagePackId,
  4. required String key,
})

Returns a string stored in the local database from the specified localization target and language pack by its key. Returns a 404 error if the string is not found. Can be called synchronously

Implementation

const GetLanguagePackString({
  required this.languagePackDatabasePath,
  required this.localizationTarget,
  required this.languagePackId,
  required this.key,
});