forceValueNotify method
Implementation
@override
void forceValueNotify() {
this._isLoadingSC.add(true);
this._isLoadedSC.add(false);
this._isErrorSC.add(false);
this._errorMessageSC.add("");
this._itemsSC.add(null);
this._dataSC.add(null);
this._isLoadingSC.add(this.isLoading);
this._isLoadedSC.add(this.isLoaded);
this._isErrorSC.add(this.isError);
this._errorMessageSC.add(this.errorMessage);
this._itemsSC.add(this.items);
this._dataSC.add(this.data);
}