M3EInteractionState constructor

const M3EInteractionState({
  1. bool hovered = false,
  2. bool focused = false,
  3. bool pressed = false,
  4. bool dragged = false,
})

Creates an interaction state snapshot.

Implementation

const M3EInteractionState({
  this.hovered = false,
  this.focused = false,
  this.pressed = false,
  this.dragged = false,
});