6 lines
92 B
Dart
6 lines
92 B
Dart
class Review {
|
|
final String text;
|
|
final int rating;
|
|
|
|
Review(this.text, this.rating);
|
|
} |