ImageModel constructor

ImageModel({
  1. required Uint8List image,
  2. int x = 0,
  3. int y = 0,
  4. int width = 600,
  5. int height = 200,
})

Implementation

ImageModel({
  required this.image,
  this.x = 0,
  this.y = 0,
  this.width = 600,
  this.height = 200,
});