popUntil<T extends Object?> static method

Future popUntil<T extends Object?>(
  1. BuildContext context,
  2. RoutePredicate predicate
)

Implementation

static Future popUntil<T extends Object?>(
  BuildContext context,
  RoutePredicate predicate,
) async {
  return Navigator.popUntil(context, predicate);
}