offUntil<T> method
Implementation
Future<T?> offUntil<T>(
Widget Function() page,
bool Function(GetPage) predicate, [
Object? arguments,
String? id,
]) {
return searchDelegate(id).offUntil(
page,
predicate,
arguments,
);
}