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