Response constructor

Response({
  1. required int rating,
  2. String? message,
  3. required ResponseType type,
})

Implementation

Response({
  required this.rating,
  this.message,
  required this.type,
});