KeyboardServiceWidget constructor

const KeyboardServiceWidget({
  1. Key? key,
  2. List<CommandShortcutEvent> commandShortcutEvents = const [],
  3. List<CharacterShortcutEvent> characterShortcutEvents = const [],
  4. FocusNode? focusNode,
  5. ContentInsertionConfiguration? contentInsertionConfiguration,
  6. required Widget child,
})

Implementation

const KeyboardServiceWidget({
  super.key,
  this.commandShortcutEvents = const [],
  this.characterShortcutEvents = const [],
  this.focusNode,
  this.contentInsertionConfiguration,
  required this.child,
});