GooglePrivacyDlpV2InfoTypeSummary.fromJson constructor

GooglePrivacyDlpV2InfoTypeSummary.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2InfoTypeSummary.fromJson(core.Map json_)
  : this(
      estimatedPrevalence: json_['estimatedPrevalence'] as core.int?,
      infoType: json_.containsKey('infoType')
          ? GooglePrivacyDlpV2InfoType.fromJson(
              json_['infoType'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );