ImageProperties constructor

const ImageProperties({
  1. double scale = 1,
  2. String? semanticLabel,
  3. bool excludeFromSemantics = false,
  4. double? width,
  5. double? height,
  6. Color? color,
  7. BlendMode? colorBlendMode,
  8. BoxFit? fit,
  9. AlignmentGeometry alignment = Alignment.center,
  10. ImageRepeat repeat = ImageRepeat.noRepeat,
  11. Rect? centerSlice,
  12. bool matchTextDirection = false,
  13. FilterQuality filterQuality = FilterQuality.low,
})

Implementation

const ImageProperties({
  this.scale = 1,
  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.filterQuality = FilterQuality.low,
});