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