MouseButtonInfoD constructor

const MouseButtonInfoD({
  1. bool up = false,
  2. bool down = false,
  3. bool pressed = false,
  4. bool released = false,
})

Implementation

const MouseButtonInfoD({
  this.up = false,
  this.down = false,
  this.pressed = false,
  this.released = false,
});