FinancialAccountInboundTransfers.fromJson constructor

FinancialAccountInboundTransfers.fromJson(
  1. 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']));
}