reset method

void reset()
inherited

Reset value, status and error to its initial state.

Implementation

void reset() {
  _value.value = _initialValue;
  _error.value = null;
  _status.value = UseAsyncStateStatus.standby;
}