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