TreasuryFinancialAccountPlatformRestrictions.fromJson constructor
TreasuryFinancialAccountPlatformRestrictions.fromJson(
- Object? json
Implementation
factory TreasuryFinancialAccountPlatformRestrictions.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return TreasuryFinancialAccountPlatformRestrictions(
inboundFlows: map['inbound_flows'] == null
? null
: TreasuryFinancialAccountPlatformRestrictionsInboundFlows.fromJson(
map['inbound_flows']),
outboundFlows: map['outbound_flows'] == null
? null
: TreasuryFinancialAccountPlatformRestrictionsInboundFlows.fromJson(
map['outbound_flows']),
);
}