imageRect property

Rect? imageRect

Gets the image Rect stored in the ValueNotifier.

Implementation

Rect? get imageRect => imageRectNotifier.value;
void imageRect=(Rect? value)

Sets the new image Rect in the ValueNotifier.

Implementation

set imageRect(Rect? value) => imageRectNotifier.value = value;