PaymentIntentProcessing.fromJson constructor
PaymentIntentProcessing.fromJson(
- Object? json
Implementation
factory PaymentIntentProcessing.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PaymentIntentProcessing(
card: map['card'] == null
? null
: PaymentIntentCardProcessing.fromJson(map['card']));
}