PaymentIntentMandateDataClientKeyParamCustomerAcceptance.fromJson constructor

PaymentIntentMandateDataClientKeyParamCustomerAcceptance.fromJson(
  1. Object? json
)

Implementation

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