also<R> method
T
also<R>(
- dynamic block(
- T
Implementation
T also<R>(Function(T) block) {
block(this);
return this;
}
T also<R>(Function(T) block) {
block(this);
return this;
}