GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.fromJson constructor
GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DeltaPresenceEstimationQuasiIdValues.fromJson(
core.Map json_,
) : this(
estimatedProbability:
(json_['estimatedProbability'] as core.num?)?.toDouble(),
quasiIdsValues:
(json_['quasiIdsValues'] as core.List?)
?.map(
(value) => GooglePrivacyDlpV2Value.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);