also method
T
also(
- void action(
- T it
Implementation
T also(void Function(T it) action) {
action.call(this);
return this;
}
T also(void Function(T it) action) {
action.call(this);
return this;
}