Response constructor
Response({
- required int rating,
- String? message,
- required ResponseType type,
Implementation
Response({
required this.rating,
this.message,
required this.type,
});