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