ImageEntity constructor

ImageEntity({
  1. int? size,
  2. int? width,
  3. ImageTypeEnum? type,
  4. String? uuid,
  5. String? url,
  6. int? height,
})

Implementation

ImageEntity({
  this.size,
  this.width,
  this.type,
  this.uuid,
  this.url,
  this.height,
});