AttributionReportingAggregatableDebugReportingData.fromJson constructor
AttributionReportingAggregatableDebugReportingData.fromJson(
- Map<String, dynamic> json
)
Implementation
factory AttributionReportingAggregatableDebugReportingData.fromJson(
Map<String, dynamic> json) {
return AttributionReportingAggregatableDebugReportingData(
keyPiece: UnsignedInt128AsBase16.fromJson(json['keyPiece'] as String),
value: json['value'] as num,
types: (json['types'] as List).map((e) => e as String).toList(),
);
}