AttributionReportingAggregatableValueDictEntry.fromJson constructor

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

Implementation

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