GooglePrivacyDlpV2TagResources.fromJson constructor

GooglePrivacyDlpV2TagResources.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2TagResources.fromJson(core.Map json_)
  : this(
      lowerDataRiskToLow: json_['lowerDataRiskToLow'] as core.bool?,
      profileGenerationsToTag:
          (json_['profileGenerationsToTag'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      tagConditions:
          (json_['tagConditions'] as core.List?)
              ?.map(
                (value) => GooglePrivacyDlpV2TagCondition.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );