ImageDataModel constructor

ImageDataModel({
  1. int height = 0,
  2. required int id,
  3. String? path,
  4. double positionX = 0,
  5. double positionY = 0,
  6. int width = 0,
  7. int type = 0,
  8. String text = '',
  9. int stack = 0,
  10. int fileSourceType = 0,
  11. bool isOffline = false,
})

Implementation

ImageDataModel({
  this.height = 0,
  required this.id,
  this.path,
  this.positionX = 0,
  this.positionY = 0,
  this.width = 0,
  this.type = 0,
  this.text  = '',
  this.stack = 0,
  this.fileSourceType = 0,
  this.isOffline = false,
});