声明窗口小部件和新窗口小部件
有什么区别示例:
appBar: AppBar(... ),
appBar: new AppBar(... ),
title: Text('Hi'),
title: new Text('Hi'),
答案 0 :(得分:4)
new
并且const上下文const
最近已成为可选项。
所以,没有区别,Dart只假设new
或const
(取决于上下文),如果以下标识符是具有默认构造函数的类(或者如果使用{则为命名构造函数) {1}})
另见https://github.com/dart-lang/sdk/blob/master/docs/language/informal/optional-new-const.md