AttributionReportingAggregationKeysEntry.fromJson constructor

AttributionReportingAggregationKeysEntry.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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