also method

T also(
  1. dynamic function(
    1. T it
    )
)

Implementation

T also(Function(T it) function) {
  function(this);
  return this;
}