Dart Operators : Cascade Notation
Cascade notation allows you to perform multiple operations on a single object without the need for the methods to return this.
Here's a simple example to illustrate how cascade notation works:
dartCopy codeclass ShoppingCart {
List<String> items = ...