image property
The image to display.
Implementation
ui.Image get image => _image;
Implementation
set image(ui.Image value) {
if (value == _image)
return;
_image = value;
markNeedsPaint();
if (_width == null || _height == null)
markNeedsLayout();
}