also method

T also(
  1. void callback(
    1. T param
    )
)

Implementation

T also(void Function(T param) callback) {
  callback(this);
  return this;
}