ImageProperties constructor

ImageProperties({
  1. MediaFormat format = const MediaFormat.unknownImage(),
  2. int width = -1,
  3. int height = -1,
  4. String colorSpace = "sRGB",
})

Implementation

ImageProperties({
  this.format = const MediaFormat.unknownImage(),
  this.width = -1,
  this.height = -1,
  this.colorSpace = "sRGB",
});