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,
})

Implementation

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