ResponsePolicyRuleLocalData.fromJson constructor

ResponsePolicyRuleLocalData.fromJson(
  1. Map json_
)

Implementation

ResponsePolicyRuleLocalData.fromJson(core.Map json_)
  : this(
      localDatas:
          (json_['localDatas'] as core.List?)
              ?.map(
                (value) => ResourceRecordSet.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );