setToken method
Set the token for playing the video.
设置播放视频的token
Implementation
Future<void> setToken(String? token) async {
if (_isNeedDisposed) return;
await _initPlayer.future;
await _vodPlayerApi.setToken(StringPlayerMsg()
..value = token
..playerId = _playerId);
}