TransformOptions constructor

const TransformOptions({
  1. int? width,
  2. int? height,
  3. ResizeMode? resize,
  4. int? quality,
  5. RequestImageFormat? format,
})

Specifies the dimensions and the resize mode of the requesting image.

Implementation

const TransformOptions({
  this.width,
  this.height,
  this.resize,
  this.quality,
  this.format,
});