updateState method

void updateState()

Implementation

void updateState() {
  if (_isUpdatingValues || _isCopying || _isLoading || _isReseting) {
    return;
  }
  _rx?.forceRefresh();
  _parentRef?.updateState();
}