AttributionReportingAggregatableTriggerData.fromJson constructor

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

Implementation

factory AttributionReportingAggregatableTriggerData.fromJson(
    Map<String, dynamic> json) {
  return AttributionReportingAggregatableTriggerData(
    keyPiece: UnsignedInt128AsBase16.fromJson(json['keyPiece'] as String),
    sourceKeys: (json['sourceKeys'] as List).map((e) => e as String).toList(),
    filters: AttributionReportingFilterPair.fromJson(
        json['filters'] as Map<String, dynamic>),
  );
}