popUntil static method

dynamic popUntil(
  1. BuildContext context,
  2. String name
)

Implementation

static popUntil(BuildContext context, String name) {
  FocusScope.of(context).unfocus();
  Navigator.popUntil(context, ModalRoute.withName(name));
}