cropRect property

Rect? cropRect

Gets the crop Rect stored in the ValueNotifier.

Implementation

Rect? get cropRect => cropRectNotifier.value;
void cropRect=(Rect? value)

Sets the new crop Rect in the ValueNotifier.

Implementation

set cropRect(Rect? value) => cropRectNotifier.value = value;