showDebugView method Null safety

Future<void> showDebugView(
  1. int showType
)

显示仪表盘

仪表盘是状态统计和事件消息浮层 view,方便调试。

参数:

showType 0:不显示;1:显示精简版;2:显示全量版,默认为不显示

Implementation

Future<void> showDebugView(int showType // 0:不显示;1:显示精简版;2:显示全量版,默认为不显示
    ) {
  return _channel.invokeMethod('showDebugView', {
    "mode": showType,
  });
}