pop static method

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

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

Implementation

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