also method

T also(
  1. void operation_for(
    1. T self
    )
)

Implementation

T also(void Function(T self) operation_for) {
  operation_for(this);
  return this;
}