paginate method
Implementation
Future<page.Page<R>> paginate(
Session session, {
List<Object>? Function(C columns)? columns,
Expr<bool>? Function(C columns)? where,
int pageSize = 100,
K? startAfter,
}) async {
final page = _Page2<C, K, R>._(
[], false, session, this, columns, where, pageSize, startAfter);
return await page.next();
}