GameShortcutsHelpScreen constructor

const GameShortcutsHelpScreen({
  1. required List<GameShortcut> shortcuts,
  2. String title = 'Keyboard Shortcuts',
  3. String controlKey = 'CTRL',
  4. String metaKey = 'META',
  5. String shiftKey = 'SHIFT',
  6. String altKey = 'ALT',
  7. String keyJoin = ' + ',
  8. Key? key,
})

Create an instance.

Implementation

const GameShortcutsHelpScreen({
  required this.shortcuts,
  this.title = 'Keyboard Shortcuts',
  this.controlKey = 'CTRL',
  this.metaKey = 'META',
  this.shiftKey = 'SHIFT',
  this.altKey = 'ALT',
  this.keyJoin = ' + ',
  super.key,
});