ReportResponse constructor

ReportResponse({
  1. required CallReportResponse call,
  2. required ParticipantReportResponse participants,
  3. required UserRatingReportResponse userRatings,
})

Returns a new ReportResponse instance.

Implementation

ReportResponse({
  required this.call,
  required this.participants,
  required this.userRatings,
});