AttributionReportingAggregatableValueDictEntry.fromJson constructor
Implementation
factory AttributionReportingAggregatableValueDictEntry.fromJson(
Map<String, dynamic> json) {
return AttributionReportingAggregatableValueDictEntry(
key: json['key'] as String,
value: json['value'] as num,
filteringId:
UnsignedInt64AsBase10.fromJson(json['filteringId'] as String),
);
}