InputStatus constructor

const InputStatus({
  1. bool hovered = false,
  2. bool focused = false,
  3. bool touched = false,
  4. bool empty = true,
  5. bool full = false,
  6. bool dirty = false,
  7. bool edited = false,
  8. bool submitted = false,
  9. FetchStatus fetch = FetchStatus.neverAttempted,
})

Implementation

const InputStatus({
  this.hovered = false,
  this.focused = false,
  this.touched = false,
  this.empty = true,
  this.full = false,
  this.dirty = false,
  this.edited = false,
  this.submitted = false,
  this.fetch = FetchStatus.neverAttempted,
});