AttributionReportingAggregatableDedupKey.fromJson constructor
AttributionReportingAggregatableDedupKey.fromJson(
- Map<String, dynamic> json
)
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>,
),
);
}