TerminalKeyboardEvent constructor
TerminalKeyboardEvent({
- required TerminalKey key,
- required bool shift,
- required bool ctrl,
- required bool alt,
- bool superKey = false,
- bool capsLock = false,
- bool numLock = false,
- required TerminalState state,
- required bool altBuffer,
- required TerminalTargetPlatform platform,
- TerminalKeyEventType type = TerminalKeyEventType.press,
- String? text,
Implementation
TerminalKeyboardEvent({
required this.key,
required this.shift,
required this.ctrl,
required this.alt,
this.superKey = false,
this.capsLock = false,
this.numLock = false,
required this.state,
required this.altBuffer,
required this.platform,
this.type = TerminalKeyEventType.press,
this.text,
});