also<R> method

T also<R>(
  1. dynamic block(
    1. T
    )
)

Implementation

T also<R>(Function(T) block) {
  block(this);
  return this;
}