ImgixImage constructor

ImgixImage(
  1. String src, {
  2. Key? key,
  3. ImgixOptions? options,
  4. double scale = 1.0,
  5. Map<String, String>? headers,
  6. String? semanticLabel,
  7. bool excludeFromSemantics = false,
  8. double? width,
  9. double? height,
  10. Color? color,
  11. BlendMode? colorBlendMode,
  12. BoxFit? fit,
  13. AlignmentGeometry alignment = Alignment.center,
  14. ImageRepeat repeat = ImageRepeat.noRepeat,
  15. Rect? centerSlice,
  16. bool matchTextDirection = false,
  17. bool gaplessPlayback = false,
  18. FilterQuality filterQuality = FilterQuality.low,
})

Implementation

ImgixImage(
  this.src, {
  Key? key,
  this.options,
  this.scale = 1.0,
  this.headers,
  this.semanticLabel,
  this.excludeFromSemantics = false,
  this.width,
  this.height,
  this.color,
  this.colorBlendMode,
  this.fit,
  this.alignment = Alignment.center,
  this.repeat = ImageRepeat.noRepeat,
  this.centerSlice,
  this.matchTextDirection = false,
  this.gaplessPlayback = false,
  this.filterQuality = FilterQuality.low,
}) : super(key: key);