mapOrNull<TResult extends Object?> method
TResult?
mapOrNull<TResult extends Object?>({
- TResult? file(
- _PlaySourceWithFile value
- TResult? network(
- _PlaySourceWithNetwork value
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(_PlaySourceWithFile value)? file,
TResult? Function(_PlaySourceWithNetwork value)? network,
}) {
final _that = this;
switch (_that) {
case _PlaySourceWithFile() when file != null:
return file(_that);
case _PlaySourceWithNetwork() when network != null:
return network(_that);
case _:
return null;
}
}