apply method

T apply(
  1. void block(
    1. T
    )
)

Implementation

T apply(void Function(T) block) {
  block(this);
  return this;
}