unpackOrThrow method
Returns the not null value or throws the given throwable.
Implementation
T unpackOrThrow(Exception throwable) {
if (this == null) throw throwable;
return this!;
}
Returns the not null value or throws the given throwable.
T unpackOrThrow(Exception throwable) {
if (this == null) throw throwable;
return this!;
}