setBitrateIndex method
Set the index of the bitrate setting.
设置码率序号
Implementation
Future<void> setBitrateIndex(int index) async {
if (_isNeedDisposed) return;
await _initPlayer.future;
await _vodPlayerApi.setBitrateIndex(IntPlayerMsg()
..value = index
..playerId = _playerId);
}