setError method

void setError(
  1. E? e
)

Implementation

void setError(E? e) {
  error = e;
  viewState = ViewStateType.error;
  refresh();
}