setError method

void setError(
  1. dynamic error
)

Implementation

void setError(dynamic error) {
  if (error == null) {
    _error = null;
    mostRecentError = _error;
  } else {
    _error = error.toString();
    mostRecentError = _error;
  }
  notifyListeners();
}