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