AttributionReportingEventReportWindows.fromJson constructor

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

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(),
  );
}