ImageInformation constructor

ImageInformation({
  1. String? uuid,
  2. num centerX = 0,
  3. num centerY = 0,
  4. num width = 0,
  5. num height = 0,
  6. bool locked = false,
})

Implementation

ImageInformation({
  this.uuid,
  this.centerX = 0,
  this.centerY = 0,
  this.width = 0,
  this.height = 0,
  this.locked = false,
});