需要返回对象,但同时需要调用对象的一些方法。
默认情况我们需要创建临时变量
var temp = new Student();
temp.setName("1");
return temp;
简略写法
return new Student()..setName("1");
类似 kotlin
中的apply
需要返回对象,但同时需要调用对象的一些方法。
默认情况我们需要创建临时变量
var temp = new Student();
temp.setName("1");
return temp;
简略写法
return new Student()..setName("1");
类似 kotlin
中的apply
本文标题:Dart中的Cascade符号——".."
本文链接:https://www.haomeiwen.com/subject/texaxltx.html
网友评论