loadPage method

Future<bool> loadPage()

Load a new page, which will then be appended to the existing paged value.

Implementation

Future<bool> loadPage() async {
  incrementPageOffset(state);
  await updateValue();
  return state.hasReachedEnd;
}