status property

LoStatus status

The current field status:

Implementation

LoStatus get status {
  if (error != null) {
    return LoStatus.invalid;
  } else if (value == initialValue) {
    return LoStatus.pure;
  } else {
    return LoStatus.valid;
  }
}