Dart中的Cascade符号——".."

参考 tinyvampirepudge


需要返回对象,但同时需要调用对象的一些方法。

默认情况我们需要创建临时变量

var temp = new Student();
temp.setName("1");
return temp;

简略写法

return new Student()..setName("1");

类似 kotlin中的apply

你可能感兴趣的:(Dart中的Cascade符号——"..")