DebugConsolePopup constructor

DebugConsolePopup({
  1. Key? key,
  2. required Widget child,
  3. bool showButton = true,
  4. DebugConsoleController? controller,
  5. List<PopupMenuItem<void>> actions = const [],
  6. bool expandStackTrace = false,
  7. String? savePath,
})

Implementation

DebugConsolePopup({
  super.key,
  required this.child,
  this.showButton = true,
  DebugConsoleController? controller,
  this.actions = const [],
  this.expandStackTrace = false,
  this.savePath,
}) : controller = controller ?? DebugConsole.instance;