KeyboardShortcutRunner constructor

const KeyboardShortcutRunner({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onEnterKeypress,
  4. VoidCallback? onEscapeKeypress,
  5. VoidCallback? onRightArrowKeypress,
  6. VoidCallback? onLeftArrowKeypress,
})

Implementation

const KeyboardShortcutRunner({
  super.key,
  required this.child,
  this.onEnterKeypress,
  this.onEscapeKeypress,
  this.onRightArrowKeypress,
  this.onLeftArrowKeypress,
});