Image.rgb constructor
Image.rgb(})
Create an image with the given dimensions and format.
Implementation
Image.rgb(this.width, this.height, {ExifData? exif, ICCProfileData? iccp,
this.textData})
: channels = Channels.rgb,
data = Uint32List(width * height),
exif = ExifData.from(exif),
iccProfile = iccp;