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