showDebugView method

Future<void> showDebugView(
  1. bool isShow
)

Display the dashboard

Parameter:

isShow Whether it is displayed or not. Default: false

Implementation

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