status property

FormStatus status

Implementation

FormStatus get status => _status;
void status=(FormStatus value)

Implementation

set status(FormStatus value) {
  if (value == _status) return;

  _status = value;
  eventSubject.sink.add(FormChangedEvent(
      form: this, status: value, errorMessage: _formMessage));
}