next method
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();
}
}