onGoing method

  1. @override
void onGoing()
override

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,
  );
}