ImageProperties constructor

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

Implementation

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