BatchUpdateIngressRulesResponse.fromJson constructor
BatchUpdateIngressRulesResponse.fromJson(
- Map json_
Implementation
BatchUpdateIngressRulesResponse.fromJson(core.Map json_)
: this(
ingressRules: (json_['ingressRules'] as core.List?)
?.map((value) => FirewallRule.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);