PaymentIntentCard.fromMap constructor

PaymentIntentCard.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory PaymentIntentCard.fromMap(Map<String, dynamic> map) {
  return PaymentIntentCard(
    requestThreedSecure: map['request_three_d_secure'] ?? 'any',
  );
}