> The other is an interesting quality-of-life change for Flutter developers, which allows creating an instance of a class without the “new” keyword. The goal of this change is to make Flutter code more readable, less clunky, and easier to type Wait, not typing new accomplishes all those amazing things? Here i thought it was just three letters, which showed intent - hence easier to grok the surrounding code
Container(
child: Column(
children: [
Text("One"),
Text("Two"),
Text("Three"),
]
)
)
It's not major but I don't think your quote is overselling it either. It is a quality-of-life change that does those things.