showDebugIcon method

void showDebugIcon()

Implementation

void showDebugIcon() {
  final widget = _DebuggerWindows(
      showAllData: showDebugDataList,
      onClose: () {
        _overlayEntry?.remove();
        _overlayEntry = null;
      });
  _overlayEntry ??= widget.showOverlay(autoOff: true);
}