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