showDebugView method

Future<void> showDebugView(
  1. bool isShow
)

显示仪表盘

参数:

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

Implementation

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