RawImage constructor

const RawImage(
  1. {Key? key,
  2. Image? image,
  3. String? debugImageLabel,
  4. double? width,
  5. double? height,
  6. double scale = 1.0,
  7. Color? color,
  8. Animation<double>? opacity,
  9. BlendMode? colorBlendMode,
  10. BoxFit? fit,
  11. AlignmentGeometry alignment = Alignment.center,
  12. ImageRepeat repeat = ImageRepeat.noRepeat,
  13. Rect? centerSlice,
  14. bool matchTextDirection = false,
  15. bool invertColors = false,
  16. FilterQuality filterQuality = FilterQuality.low,
  17. bool isAntiAlias = false}
)

Creates a widget that displays an image.

The scale, alignment, repeat, matchTextDirection and filterQuality arguments must not be null.

Implementation

const RawImage({
  super.key,
  this.image,
  this.debugImageLabel,
  this.width,
  this.height,
  this.scale = 1.0,
  this.color,
  this.opacity,
  this.colorBlendMode,
  this.fit,
  this.alignment = Alignment.center,
  this.repeat = ImageRepeat.noRepeat,
  this.centerSlice,
  this.matchTextDirection = false,
  this.invertColors = false,
  this.filterQuality = FilterQuality.low,
  this.isAntiAlias = false,
});