maybeMap<TResult extends Object?> method
TResult
maybeMap<TResult extends Object?>({
- TResult googlePay(
- PlatformPayPaymentMethodParamsGooglePay value
- TResult applePay(
- PlatformPayPaymentMethodParamsApplePay value
- TResult web(
- PlatformPayPaymentMethodParamsWeb value
- required TResult orElse(),
A variant of map that fallback to returning orElse.
It is equivalent to doing:
switch (sealedClass) {
case final Subclass value:
return ...;
case _:
return orElse();
}
Implementation
@optionalTypeArgs TResult maybeMap<TResult extends Object?>({TResult Function( PlatformPayPaymentMethodParamsGooglePay value)? googlePay,TResult Function( PlatformPayPaymentMethodParamsApplePay value)? applePay,TResult Function( PlatformPayPaymentMethodParamsWeb value)? web,required TResult orElse(),}){
final _that = this;
switch (_that) {
case PlatformPayPaymentMethodParamsGooglePay() when googlePay != null:
return googlePay(_that);case PlatformPayPaymentMethodParamsApplePay() when applePay != null:
return applePay(_that);case PlatformPayPaymentMethodParamsWeb() when web != null:
return web(_that);case _:
return orElse();
}
}