also method
T
also(
- void operation(
- T it
做了某个操作后还返回本身啊
Implementation
T also(void Function(T it) operation) {
if (this != null) {
operation(this!);
}
return this;
}
做了某个操作后还返回本身啊
T also(void Function(T it) operation) {
if (this != null) {
operation(this!);
}
return this;
}