setMute method
Set whether to mute or not
设置是否静音
Implementation
@override
Future<void> setMute(bool mute) async {
if (_isNeedDisposed) return;
await _initPlayer.future;
await _vodPlayerApi.setMute(BoolPlayerMsg()
..value = mute
..playerId = _playerId);
}