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