isPlaying method
Whether the video is currently playing.
Implementation
@override
Future<bool> isPlaying() async {
if (_isNeedDisposed) return false;
await _initPlayer.future;
final result = await _mc!.invoke<bool>('isPlaying');
return result ?? false;
}