copyWhenLoading method

FetchingState<T> copyWhenLoading()

create new instance of FetchingState. set status to LoadState.loading keep the current data and error or user can pass in those parameter. this is helpful when you want to add more data into current data

Implementation

FetchingState<T> copyWhenLoading() {
  return FetchingState(
    fetchingStatus: LoadState.loading,
    data: data,
  );
}