let<R> method
R
let<R>(
- R fn(
- T
Calls the provided function with the value of this as its argument and
returns the result.
Implementation
R let<R>(R Function(T) fn) {
return fn(this);
}