ImageData constructor

const ImageData({
  1. required File file,
  2. bool isDeletable = true,
  3. String? id,
})

Implementation

const ImageData({
  required this.file,
  this.isDeletable = true,
  this.id,
});