GooglePrivacyDlpV2DeltaPresenceEstimationResult.fromJson constructor

GooglePrivacyDlpV2DeltaPresenceEstimationResult.fromJson(
  1. Map json_
)

Implementation

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