PaymentIntentMandateDataClientKeyParam.fromJson constructor

PaymentIntentMandateDataClientKeyParam.fromJson(
  1. Object? json
)

Implementation

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