AttributionReportingEventReportWindows.fromJson constructor
Implementation
factory AttributionReportingEventReportWindows.fromJson(
  Map<String, dynamic> json,
) {
  return AttributionReportingEventReportWindows(
    start: json['start'] as int,
    ends: (json['ends'] as List).map((e) => e as int).toList(),
  );
}