AssetBundleLocalizationDataSource constructor

AssetBundleLocalizationDataSource({
  1. String bundlePath = 'localizations',
  2. AssetBundle? bundle,
  3. bool cache = true,
})

Implementation

AssetBundleLocalizationDataSource({
  this.bundlePath = 'localizations',
  AssetBundle? bundle,
  this.cache = true,
})  : bundle = bundle ?? rootBundle,
      super();