showDebugView method

Future<void> showDebugView(
  1. bool isShow
)

是否显示播放器状态信息的调试浮层。

isShow 是否显示。【默认值】:false

Implementation

Future<void> showDebugView(bool isShow) async {
  await _channel.invokeMethod('showDebugView', {"isShow": isShow});
}