AggregationThresholdPolicy.fromJson constructor
AggregationThresholdPolicy.fromJson(
- Map json_
Implementation
AggregationThresholdPolicy.fromJson(core.Map json_)
: this(
privacyUnitColumns: (json_['privacyUnitColumns'] as core.List?)
?.map((value) => value as core.String)
.toList(),
threshold: json_['threshold'] as core.String?,
);