How do method cascades work exactly in dart?

As pointed in the official Dart language article Method Cascades in Dart: The “..” syntax invokes a method (or setter or getter) but discards the result, and returns the original receiver instead. In brief, method cascades provide a syntactic sugar for situations where the receiver of a method invocation might otherwise have to be repeated. … Read more