also method

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

Calls the specified function block with this value as its argument and returns this value

Implementation

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