also method

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

Implementation

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