image property
The decoded image, if available. If the MimeType is not supported, this will be null.
Implementation
img.Image? get image {
if (_imageDecoded) {
return _image;
}
_image = mimeType.decode(raw);
_imageDecoded = true;
return _image;
}