also method

T also(
  1. void block(
    1. T
    )
)

Implementation

T also(void Function(T) block) {
  block(this);
  return this;
}