isPlaying method

Future<bool> isPlaying()

Check if the video is currently playing

Implementation

Future<bool> isPlaying() async {
  _checkInitialized();
  return await _playerMethodManager.isPlaying();
}