Navigator of 和 Navigator pop 的区别

Navigator of and Navigator pop differences

任何人都可以告诉我在关闭模式时使用 Navigator.of(context).pop()Navigator.pop(context) 之间是否有区别(使用 rflutter_alert 中的 showDialog 或 Alert),因为两者都关闭了模式?

感谢阅读!

来自源代码
https://github.com/flutter/flutter/blob/2a8e7b7bf162e672141a73180214a9eb9033251d/packages/flutter/lib/src/widgets/navigator.dart#L1487

@optionalTypeArgs
  static void pop<T extends Object>(BuildContext context, [ T result ]) {
    Navigator.of(context).pop<T>(result);
  }

Navigator.pop(context) 调用 Navigator.of(context).pop()