LocalAssetLoader constructor

LocalAssetLoader({
  1. String? audioPath,
  2. String? fontPath,
  3. String? imagePath,
  4. String? path,
  5. AssetBundle? assetBundle,
})

Implementation

LocalAssetLoader({
  this.audioPath,
  this.fontPath,
  this.imagePath,
  this.path,
  AssetBundle? assetBundle,
}) : _assetBundle = assetBundle ?? rootBundle;