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