Creates a widget that displays an image.
Source
RawImage({
Key key,
this.image,
this.width,
this.height,
this.scale: 1.0,
this.color,
this.fit,
this.alignment,
this.repeat: ImageRepeat.noRepeat,
this.centerSlice
}) : super(key: key) {
assert(scale != null);
assert(repeat != null);
}