also method

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

Implementation

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