KeyBoardShortcuts constructor

KeyBoardShortcuts(
  1. {Set<LogicalKeyboardKey>? keysToPress,
  2. VoidCallback? onKeysPressed,
  3. String? helpLabel,
  4. bool? globalShortcuts = false,
  5. @required Widget? child,
  6. Key? key}
)

Implementation

KeyBoardShortcuts({this.keysToPress, this.onKeysPressed, this.helpLabel, this.globalShortcuts = false, @required this.child, Key? key})
    : super(key: key);