GooglePrivacyDlpV2LDiversityHistogramBucket.fromJson constructor

GooglePrivacyDlpV2LDiversityHistogramBucket.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2LDiversityHistogramBucket.fromJson(core.Map json_)
    : this(
        bucketSize: json_.containsKey('bucketSize')
            ? json_['bucketSize'] as core.String
            : null,
        bucketValueCount: json_.containsKey('bucketValueCount')
            ? json_['bucketValueCount'] as core.String
            : null,
        bucketValues: json_.containsKey('bucketValues')
            ? (json_['bucketValues'] as core.List)
                .map((value) =>
                    GooglePrivacyDlpV2LDiversityEquivalenceClass.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        sensitiveValueFrequencyLowerBound:
            json_.containsKey('sensitiveValueFrequencyLowerBound')
                ? json_['sensitiveValueFrequencyLowerBound'] as core.String
                : null,
        sensitiveValueFrequencyUpperBound:
            json_.containsKey('sensitiveValueFrequencyUpperBound')
                ? json_['sensitiveValueFrequencyUpperBound'] as core.String
                : null,
      );