showDebugger method

Future<void> showDebugger()

Implementation

Future<void> showDebugger() async {
  if (navigatorKey != null && navigatorKey!.currentContext != null) {
    await showCupertinoModalPopup(
        context: navigatorKey!.currentContext!,
        builder: (_) => const _DebuggerList());
  }
}