Review constructor

Review({
  1. String? id,
  2. required String username,
  3. required String? description,
  4. required int rating,
})

Implementation

Review(
    {this.id,
    required this.username,
    required this.description,
    required this.rating});