reset method

void reset()

Resets all the information of the controller

Implementation

void reset() {
  if (_isResetting) return;
  _isResetting = true;
  if (_isFetchingNotifier.value) {
    addStopFetchListener(_resetAfterFetchingCompleted);
  } else {
    _doReset();
  }
}