letWithElse<R> method
R
letWithElse<R>(
- R block(
- T it
- required R orElse,
Implementation
R letWithElse<R>(final R Function(T it) block, {required final R orElse}) =>
this?.let(block.call) ?? orElse;