also method

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

Implementation

T also(void Function(T it) action) {
  action.call(this);
  return this;
}