mapOrNull<TResult extends Object?> method

  1. @optionalTypeArgs
TResult? mapOrNull<TResult extends Object?>({
  1. TResult? paymentIntent(
    1. CollectBankAccountPaymentIntentResult value
    )?,
  2. TResult? setupIntent(
    1. CollectBankAccountSetupIntentResult 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( CollectBankAccountPaymentIntentResult value)?  paymentIntent,TResult? Function( CollectBankAccountSetupIntentResult value)?  setupIntent,}){
final _that = this;
switch (_that) {
case CollectBankAccountPaymentIntentResult() when paymentIntent != null:
return paymentIntent(_that);case CollectBankAccountSetupIntentResult() when setupIntent != null:
return setupIntent(_that);case _:
  return null;

}
}