clear method
Resets the paginations to its initial state.
Implementation
Future<void> clear() async {
for (final p in paginations.map((e) => e.p)) {
await p.clear();
}
}
Resets the paginations to its initial state.
Future<void> clear() async {
for (final p in paginations.map((e) => e.p)) {
await p.clear();
}
}