Cascade operator in flutter
The .. operator in Dart is called the cascade operator. It is used to chain together multiple methods calls on the same object. For example, the following code:
class Person {
String? name;
int? age;
Person({this.name, this.age});
void setN...
davidoh.hashnode.dev1 min read