반응형

공식 문서

https://dart.dev/guides/language/language-tour#cascade-notation

 

A tour of the Dart language

A tour of all the major Dart language features.

dart.dev

단순하게 생각하면 객체 멤버 변수에 대한 접근을 보다 간결하게 할 수 있도록 해줌

before

Hello hello = Hello();

hello.title = "타이틀";

hello.body = "몸뚱아리";

 

after

Hello()

..title = "타이틀";

..body = "몸뚱아리";

반응형

+ Recent posts