showDebugView method
Whether to display the debugging overlay of player status information
是否显示播放器状态信息的调试浮层
@param isShow 是否显示。default:NO。
Implementation
Future<void> showDebugView(bool isShow) async {
if (_isNeedDisposed) return;
await _initPlayer.future;
await _livePlayerApi.showDebugView(PlayerMsg(playerId: _playerId), isShow);
}