imageSize property

Size? imageSize

Gets the image Size stored in the ValueNotifier.

Implementation

Size? get imageSize => imageSizeNotifier.value;
void imageSize=(Size? value)

Sets the new image Size in the ValueNotifier.

Implementation

set imageSize(Size? value) => imageSizeNotifier.value = value;