AssetLoaderException constructor

const AssetLoaderException(
  1. String message, {
  2. Exception? cause,
  3. required String path,
})

Create a new AssetLoaderException message the message cause optional chained exception

Implementation

const AssetLoaderException(super.message, {
  super.cause,
  required this.path
});