also method

Object also(
  1. void function(
    1. Object
    )
)

Implementation

Object also(void Function(Object) function) {
  function(this);
  return this;
}