SendCallRating constructor

const SendCallRating({
  1. required int callId,
  2. required int rating,
  3. required String comment,
  4. required List<CallProblem> problems,
})

Sends a call rating

Implementation

const SendCallRating({
  required this.callId,
  required this.rating,
  required this.comment,
  required this.problems,
});