debugToggleKey top-level property

KeyEvent? debugToggleKey
getter/setter pair

Key sequence to toggle debug overlays globally (if null, hotkey is disabled). Defaults to Ctrl+O to avoid terminal multiplexer conflicts.

Implementation

KeyEvent? debugToggleKey = const KeyEvent(
  'o',
  KeyType.character,
  modifiers: {Modifier.control},
);