popTo static method

void popTo(
  1. String routeName,
  2. PageType pageType, {
  3. Map? result,
  4. bool animated = true,
})

Implementation

static void popTo(String routeName, PageType pageType,
    {Map? result, bool animated = true}) {
  DNavigatorManager.nodeHandle(routeName, pageType, DStackConstant.popTo,
      result: result, animated: animated);
}