hasFrameStatus property

ValueNotifier<bool> hasFrameStatus
getter/setter pair

A value notifier for whether or not there is a frame present

This can be useful if a widget needs to update only when the frame notifier gets its first frame or disposes its last frame, and not when a new frame arrives

Implementation

ValueNotifier<bool> hasFrameStatus = ValueNotifier(false);