FileTranslationLoader constructor

FileTranslationLoader({
  1. String fallbackFile = "en",
  2. String basePath = "assets/flutter_i18n",
  3. bool useCountryCode = false,
  4. bool useScriptCode = false,
  5. dynamic forcedLocale,
  6. dynamic decodeStrategies,
})

Implementation

FileTranslationLoader(
    {this.fallbackFile = "en",
    this.basePath = "assets/flutter_i18n",
    this.useCountryCode = false,
    this.useScriptCode = false,
    forcedLocale,
    decodeStrategies}) {
  this.forcedLocale = forcedLocale;
  this.decodeStrategies = decodeStrategies;
}