also method

T also(
  1. void fn(
    1. T e
    )
)

Implementation

T also(void Function(T e) fn) {
  fn(this);
  return this;
}