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