ReviewModel constructor

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

Implementation

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