let<R> method
R?
let<R>(
- R action(
- T
Implementation
R? let<R>(R Function(T) action) {
final value = this;
return value != null ? action(value) : null;
}
R? let<R>(R Function(T) action) {
final value = this;
return value != null ? action(value) : null;
}