image property

Image? get image

The dart:ui instance of the current frame.

Implementation

ui.Image? get image => _image;
set image (Image? value)

The dart:ui instance of the current frame.

Implementation

set image(ui.Image? value) {
  _image = value;
  notifyListeners();
}