GooglePrivacyDlpV2KMapEstimationHistogramBucket.fromJson constructor

GooglePrivacyDlpV2KMapEstimationHistogramBucket.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2KMapEstimationHistogramBucket.fromJson(core.Map json_)
    : this(
        bucketSize: json_['bucketSize'] as core.String?,
        bucketValueCount: json_['bucketValueCount'] as core.String?,
        bucketValues: (json_['bucketValues'] as core.List?)
            ?.map((value) =>
                GooglePrivacyDlpV2KMapEstimationQuasiIdValues.fromJson(
                    value as core.Map<core.String, core.dynamic>))
            .toList(),
        maxAnonymity: json_['maxAnonymity'] as core.String?,
        minAnonymity: json_['minAnonymity'] as core.String?,
      );