RawKeyBinding constructor

const RawKeyBinding({
  1. required String key,
  2. String mods = '',
  3. String mode = '',
  4. String? action,
  5. String? chars,
})

Implementation

const RawKeyBinding({
  required this.key,
  this.mods = '',
  this.mode = '',
  this.action,
  this.chars,
});