backgroundImage property
Image?
get
backgroundImage
Implementation
ui.Image? get backgroundImage => backgroundImageListenable.value;
set
backgroundImage
(Image? image)
Sets the background image for the drawing pad.
This image will be displayed behind the strokes.
Implementation
set backgroundImage(ui.Image? image) {
backgroundImageListenable.value = image;
}