mapOrNull<TResult extends Object?> method
TResult?
mapOrNull<TResult extends Object?>({
- TResult? left(
- Left<
L, R> value
- Left<
- TResult? right(
- Right<
L, R> value
- Right<
A variant of map that fallback to returning null.
It is equivalent to doing:
switch (sealedClass) {
case final Subclass value:
return ...;
case _:
return null;
}
Implementation
@optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
TResult? Function(Left<L, R> value)? left,
TResult? Function(Right<L, R> value)? right,
}) {
final _that = this;
switch (_that) {
case Left() when left != null:
return left(_that);
case Right() when right != null:
return right(_that);
case _:
return null;
}
}