apply method

T apply(
  1. void callback(
    1. T it
    )
)

Implementation

T apply(void Function(T it) callback) {
  callback.call(this);
  return this;
}