mapOrNull<TResult extends Object?> method

  1. @optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
  1. TResult? googlePay(
    1. PlatformPayPaymentMethodParamsGooglePay value
    )?,
  2. TResult? applePay(
    1. PlatformPayPaymentMethodParamsApplePay value
    )?,
  3. TResult? web(
    1. PlatformPayPaymentMethodParamsWeb 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( PlatformPayPaymentMethodParamsGooglePay value)?  googlePay,TResult? Function( PlatformPayPaymentMethodParamsApplePay value)?  applePay,TResult? Function( PlatformPayPaymentMethodParamsWeb value)?  web,}){
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 null;

}
}