viewSizeNotifier property

ValueNotifier<Size> viewSizeNotifier
getter/setter pair

Size of the video view.

This tracks the current dimensions of the video view.

Implementation

ValueNotifier<Size> viewSizeNotifier = ValueNotifier<Size>(
  const Size(360, 640),
);