next method

Future<void> next()

Fetches the next page.

Implementation

Future<void> next() async =>
    paginations.firstWhereOrNull((e) => e.p.hasNext.isTrue)?.p.next();