Image constructor

const Image({
  1. required int id,
  2. required int media,
  3. required ImageType type,
  4. int? width,
  5. int? height,
})

Implementation

const Image({
  required this.id,
  required this.media,
  required this.type,
  this.width,
  this.height,
});