showDebugView method
- bool isShow
显示仪表盘
参数:
isShow
是否显示。【默认值】:false
Implementation
Future<V2TXLiveCode> showDebugView(bool isShow) async {
var result = await _channel.invokeMethod(
'showDebugView', {"isShow": isShow});
return _liveCodeWithResult(result);
}