maybeMap<TResult extends Object?> method
TResult
maybeMap<TResult extends Object?>({
- TResult paymentIntent(
- CollectBankAccountPaymentIntentResult value
- TResult setupIntent(
- CollectBankAccountSetupIntentResult 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( CollectBankAccountPaymentIntentResult value)? paymentIntent,TResult Function( CollectBankAccountSetupIntentResult value)? setupIntent,required TResult orElse(),}){
final _that = this;
switch (_that) {
case CollectBankAccountPaymentIntentResult() when paymentIntent != null:
return paymentIntent(_that);case CollectBankAccountSetupIntentResult() when setupIntent != null:
return setupIntent(_that);case _:
return orElse();
}
}