next method

  1. @override
Future<void> next()
override

Fetches next page of the items.

Implementation

@override
Future<void> next() async {
  Log.debug('next()', '$runtimeType');

  if (!status.value.isSuccess) {
    await ensureInitialized();
  }

  if (nextLoading.isFalse) {
    await pagination?.next();
  }
}