Cascade Operator (..)
The cascade operator (..) is another handy Dart feature that helps you streamline object initialization. Instead of referencing the object name repeatedly, you can chain multiple property assignments and method calls to the same object.
myClass ..property1 = value1 ..property2 = value