@override bool get isPlaying => _isPlaying;
@override set isPlaying(bool value) { _isPlaying = value; channel.invokeMethod(WebPlayer.methodIsPlaying, value); if (value) { _listenPosition(); } else { _stopListenPosition(); } }