onGoing method
Update the state to indicate that data loading is in progress
Implementation
@override
void onGoing() {
state = state.copyWith(
itemList: state.itemList,
nextPageKey: state.nextPageKey,
error: null,
);
}
Update the state to indicate that data loading is in progress
@override
void onGoing() {
state = state.copyWith(
itemList: state.itemList,
nextPageKey: state.nextPageKey,
error: null,
);
}