CardPaymentMethodDetails class

Implemented types
Annotations
  • @Freezed(unionKey: 'type')

Constructors

CardPaymentMethodDetails({@ElementConverter() required Element card, @JsonKey(name: "billing_details") BillingDetails? billingDetails})
Use stripe.confirmCardPayment with payment data from an Element by passing a card or cardNumber Element as payment_methodcard in the data argument.
const
factory
CardPaymentMethodDetails.fromJson(Map<String, dynamic> json)
factory
CardPaymentMethodDetails.token({required CardToken card, @JsonKey(name: "billing_details") BillingDetails? billingDetails})
For backwards compatibility, you can convert an existing Token into a PaymentMethod with stripe.confirmCardPayment by passing the Token to payment_methodtoken. The newly created PaymentMethod will be used to confirm the PaymentIntent.
const
factory

Properties

billingDetails BillingDetails?
The billing_details associated with the card.
no setterinherited
copyWith → $CardPaymentMethodDetailsCopyWith<CardPaymentMethodDetails>
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

map<TResult extends Object?>(TResult $default(_CardPaymentMethodRef value), {required TResult token(_CardPaymentMethodDetailsToken value)}) → TResult
inherited
mapOrNull<TResult extends Object?>(TResult? $default(_CardPaymentMethodRef value)?, {TResult? token(_CardPaymentMethodDetailsToken value)?}) → TResult?
inherited
maybeMap<TResult extends Object?>(TResult $default(_CardPaymentMethodRef value)?, {TResult token(_CardPaymentMethodDetailsToken value)?, required TResult orElse()}) → TResult
inherited
maybeWhen<TResult extends Object?>(TResult $default(Element card, BillingDetails? billingDetails)?, {TResult token(CardToken card, BillingDetails? billingDetails)?, required TResult orElse()}) → TResult
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
inherited
toString() String
A string representation of this object.
inherited
when<TResult extends Object?>(TResult $default(Element card, BillingDetails? billingDetails), {required TResult token(CardToken card, BillingDetails? billingDetails)}) → TResult
inherited
whenOrNull<TResult extends Object?>(TResult? $default(Element card, BillingDetails? billingDetails)?, {TResult? token(CardToken card, BillingDetails? billingDetails)?}) → TResult?
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited