handleLoadMore method
Implementation
@override
TPaginationState<T> handleLoadMore(TPaginationState<T> state) {
if (!state.hasMoreItems || state.loading) return state;
final newState = state.copyWith(
currentPage: state.currentPage + 1,
loading: true,
);
_loadData(newState, append: true);
return newState;
}