showDebugView method

Future<void> showDebugView(
  1. int showType
)

Display debug information floats (can display audio/video information and event information)

The dashboard is a floating view for status statistics and event notifications to facilitate debugging.

Parameters:

showType 0: does not display; 1: displays lite edition; 2: displays full edition. Default value: 0

Platform not supported:

  • web
  • Windows

Implementation

Future<void> showDebugView(
    int showType // 0: does not display; 1: displays lite edition; 2: displays full edition. Default value: 0
    ) {
  return _cloudChannel!.invokeMethod('showDebugView', {
    "mode": showType,
  });
}