AttributionReportingAggregatableDedupKey.fromJson constructor
Implementation
factory AttributionReportingAggregatableDedupKey.fromJson(
Map<String, dynamic> json) {
return AttributionReportingAggregatableDedupKey(
dedupKey: json.containsKey('dedupKey')
? UnsignedInt64AsBase10.fromJson(json['dedupKey'] as String)
: null,
filters: AttributionReportingFilterPair.fromJson(
json['filters'] as Map<String, dynamic>),
);
}