let<R> method

R let<R>(
  1. R block(
    1. T self
    )
)

Implementation

R let<R>(R Function(T self) block) {
  return block(this);
}