ResponsePolicyRulesListResponse.fromJson constructor
ResponsePolicyRulesListResponse.fromJson(
- Map json_
Implementation
ResponsePolicyRulesListResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
responsePolicyRules: json_.containsKey('responsePolicyRules')
? (json_['responsePolicyRules'] as core.List)
.map((value) => ResponsePolicyRule.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);