around method

Future<void> around()

Fetches the initial page.

Implementation

Future<void> around() async {
  for (final p in paginations.map((e) => e.p)) {
    await p.around();
    if (p.hasNext.isTrue) {
      break;
    } else {
      continue;
    }
  }
}