TerminalMouseModifiers constructor

const TerminalMouseModifiers({
  1. bool shift = false,
  2. bool alt = false,
  3. bool control = false,
})

Implementation

const TerminalMouseModifiers({
  this.shift = false,
  this.alt = false,
  this.control = false,
});