also method
T
also(
- void callback(
- T param
Implementation
T also(void Function(T param) callback) {
callback(this);
return this;
}
T also(void Function(T param) callback) {
callback(this);
return this;
}