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