around method
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;
}
}
}
Fetches the initial page.
Future<void> around() async {
for (final p in paginations.map((e) => e.p)) {
await p.around();
if (p.hasNext.isTrue) {
break;
} else {
continue;
}
}
}