FirewallDenied.fromJson constructor
FirewallDenied.fromJson(
- Map json_
Implementation
FirewallDenied.fromJson(core.Map json_)
: this(
IPProtocol: json_.containsKey('IPProtocol')
? json_['IPProtocol'] as core.String
: null,
ports: json_.containsKey('ports')
? (json_['ports'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);