let<R> method

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

Implementation

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