mapOrNull<TResult extends Object?> method
TResult?
mapOrNull<TResult extends Object?>({
- TResult? googlePay(
- PlatformPayConfirmParamsGooglePay value
- TResult? applePay(
- PlatformPayConfirmParamsApplePay value
- TResult? web(
- PlatformPayConfirmParamsWeb 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( PlatformPayConfirmParamsGooglePay value)? googlePay,TResult? Function( PlatformPayConfirmParamsApplePay value)? applePay,TResult? Function( PlatformPayConfirmParamsWeb value)? web,}){
final _that = this;
switch (_that) {
case PlatformPayConfirmParamsGooglePay() when googlePay != null:
return googlePay(_that);case PlatformPayConfirmParamsApplePay() when applePay != null:
return applePay(_that);case PlatformPayConfirmParamsWeb() when web != null:
return web(_that);case _:
return null;
}
}