pop static method

void pop({
  1. Map? result,
  2. bool animated = true,
})

result 返回值,可为空 pop可以不传路由信息

Implementation

static void pop({Map? result, bool animated = true}) {
  DNavigatorManager.nodeHandle(null, null, DStackConstant.pop,
      result: result, animated: animated);
}