also method

T also(
  1. void f(
    1. T v
    )
)

Implementation

T also(void Function(T v) f) {
  f(this);
  return this;
}