ImageProperties constructor

const ImageProperties({
  1. int? width = 0,
  2. int? height = 0,
  3. ImageOrientation orientation = ImageOrientation.undefined,
})

Implementation

const ImageProperties(
    {this.width = 0,
    this.height = 0,
    this.orientation = ImageOrientation.undefined});