showDebugView method
Display the dashboard
Parameter:
isShow
Whether it is displayed or not. Default: false
Implementation
Future<V2TXLiveCode> showDebugView(bool isShow) async {
var result = await _channel.invokeMethod(
'showDebugView', {"isShow": isShow});
return _liveCodeWithResult(result);
}