isPlaying property
bool
get
isPlaying
Returns whether the video player is playing.
Implementation
bool get isPlaying {
if (isInitialized) {
return _videoPlayerController.value.isPlaying;
}
return false;
}