AssetDescriptor constructor

AssetDescriptor(
  1. {required String location,
  2. required String name,
  3. required String description,
  4. String? packageName,
  5. String? data}
)

Implementation

AssetDescriptor({
  required this.location,
  required this.name,
  required this.description,
  this.packageName,
  this.data,
});