offNamedUntil abstract method

Future<T?>? offNamedUntil(
  1. String page, {
  2. bool predicate(
    1. GetPage route
    )?,
  3. Object? arguments,
  4. String? id,
  5. Map<String, String>? parameters,
})

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

Implementation

Future<T?>? offNamedUntil(
  String page, {
  bool Function(GetPage route)? predicate,
  Object? arguments,
  String? id,
  Map<String, String>? parameters,
});