CLPressableState constructor

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

Implementation

const CLPressableState({
  this.hovered = false,
  this.pressed = false,
  this.focused = false,
  this.disabled = false,
});