ShortcutModifiers constructor

ShortcutModifiers({
  1. bool shift = false,
  2. bool control = false,
  3. bool command = false,
  4. bool alt = false,
})

Implementation

ShortcutModifiers({
  this.shift = false,
  this.control = false,
  this.command = false,
  this.alt = false,
});