ResponsePolicyRulesPatchResponse.fromJson constructor

ResponsePolicyRulesPatchResponse.fromJson(
  1. 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,
    );