AssetImageInfo constructor

AssetImageInfo({
  1. String? id,
  2. required String path,
  3. String? mimeType,
  4. String? name,
  5. AssetEntity? assetEntity,
})

Implementation

AssetImageInfo({
  this.id,
  required this.path,
  this.mimeType,
  this.name,
  this.assetEntity,
});