DebugConsole constructor

DebugConsole({
  1. required DebugConsoleController controller,
  2. String title = 'Debug Console',
  3. int height = 8,
  4. bool showHelp = true,
  5. bool showToggleShortcut = false,
  6. String emptyText = 'No console entries yet.',
  7. Key? key,
})

Implementation

DebugConsole({
  required this.controller,
  this.title = 'Debug Console',
  this.height = 8,
  this.showHelp = true,
  this.showToggleShortcut = false,
  this.emptyText = 'No console entries yet.',
  super.key,
});