FluentKeyBinding constructor

const FluentKeyBinding({
  1. required LogicalKeyboardKey key,
  2. bool control = false,
  3. bool meta = false,
  4. bool shift = false,
  5. bool alt = false,
  6. int priority = 0,
})

Implementation

const FluentKeyBinding({
  required this.key,
  this.control = false,
  this.meta = false,
  this.shift = false,
  this.alt = false,
  this.priority = 0,
});