RawImage constructor
- Key? key,
- Image? image,
- String? debugImageLabel,
- double? width,
- double? height,
- double scale = 1.0,
- Color? color,
- Animation<
double> ? opacity, - BlendMode? colorBlendMode,
- BoxFit? fit,
- AlignmentGeometry alignment = Alignment.center,
- ImageRepeat repeat = ImageRepeat.noRepeat,
- Rect? centerSlice,
- bool matchTextDirection = false,
- bool invertColors = false,
- FilterQuality filterQuality = FilterQuality.medium,
- 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.medium,
this.isAntiAlias = false,
});