also method
T
also(
- void block(
- T
Runs block with this, then returns this.
Implementation
T also(void Function(T) block) {
block(this);
return this;
}
Runs block with this, then returns this.
T also(void Function(T) block) {
block(this);
return this;
}