ReviewModel constructor

ReviewModel({
  1. int? id,
  2. String? firstName,
  3. String? comment,
  4. int? rating,
  5. int? createdAt,
})

Implementation

ReviewModel({this.id, this.firstName, this.comment, this.rating, this.createdAt});