map<R> method
Returns the encapsulated result of the given transform function applied to the encapsulated value
if this instance represents success or the original encapsulated Throwable
exception if it is failure.
Implementation
Try<R, Failure> map<R>(R Function(Success value) transform) {
if (isSuccess) {
return Try.success(transform(getOrThrow()));
} else {
return Try.failure(exceptionOrNull());
}
}