最佳答案
In my Dart based application I just noticed that I can omit the new
keyword and everything works perfectly fine.
Instead of final widget = new Widget();
I can also use final widget = Widget();
.
Does this have any effect in code?