let<T> method

void let<T>(
  1. void block(
    1. T v
    )
)

Implementation

void let<T>(void Function(T v) block) {
  block(this as T);
}