isPlay property

ValueNotifier<bool> isPlay
getter/setter pair

isPlay is a valueNotifier notifies when video state change from play and pause

Implementation

late ValueNotifier<bool> isPlay = ValueNotifier(isPlaying);