showDebugView method

Future<V2TXLiveCode> showDebugView(
  1. bool isShow
)

显示仪表盘。

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

Implementation

Future<V2TXLiveCode> showDebugView(bool isShow) async {
  var result = await _channel.invokeMethod(
      'showDebugView', {"isShow": isShow});
  return _liveCodeWithResult(result);
}