ImageProperties constructor

const ImageProperties({
  1. Rect cropRect = Rect.zero,
  2. double rotation = 0,
  3. bool flipHorizontal = false,
  4. bool flipVertical = false,
})

Implementation

const ImageProperties({
  this.cropRect = Rect.zero,
  this.rotation = 0,
  this.flipHorizontal = false,
  this.flipVertical = false,
});