also method

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

Implementation

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