TextFieldShortcut constructor

const TextFieldShortcut({
  1. KeyType? type,
  2. String? key,
  3. Set<Modifier> modifiers = const <ev.Modifier>{},
})

Creates a TextFieldShortcut.

Implementation

const TextFieldShortcut({
  this.type,
  this.key,
  this.modifiers = const <ev.Modifier>{},
});