let<T> method

T let<T>(
  1. T apply(
    1. T
    )
)

Lets apply with T as parameter

Implementation

T let<T>(T Function(T) apply) => apply(this as T);