SendCallRating constructor

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

Implementation

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