offUntil abstract method

Future<T?> offUntil(
  1. Widget page(),
  2. bool predicate(
    1. GetPage
    ), [
  3. Object? arguments
])

Navigates off a page until a certain condition is met, returns a result of type T.

Implementation

Future<T?> offUntil(
  Widget Function() page,
  bool Function(GetPage) predicate, [
  Object? arguments,
]);