AggregationThresholdPolicy.fromJson constructor

AggregationThresholdPolicy.fromJson(
  1. Map json_
)

Implementation

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