1import 'package:flutter/material.dart';
2import 'package:go_router/go_router.dart';
4extension GoRouterExtension on BuildContext {
5 void popUntilPath(
String targetPath) {
7 final currentPath = GoRouterState.of(
this).uri.toString();
8 if (currentPath == targetPath)
break;