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