letWithElseCall<R> method
R
letWithElseCall<R>(
- R block(
- T it
- R orElse()
Implementation
R letWithElseCall<R>(
final R Function(T it) block,
final R Function() orElse,
) =>
this?.let(block) ?? orElse();