also method

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

Implementation

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