ResponsePolicyRulesPatchResponse.fromJson constructor
ResponsePolicyRulesPatchResponse.fromJson(
- Map json_
Implementation
ResponsePolicyRulesPatchResponse.fromJson(core.Map json_)
: this(
responsePolicyRule: json_.containsKey('responsePolicyRule')
? ResponsePolicyRule.fromJson(json_['responsePolicyRule']
as core.Map<core.String, core.dynamic>)
: null,
);