ReviewModel constructor

ReviewModel({
  1. int? id,
  2. int? rate,
  3. String? customComment,
  4. int? orderId,
  5. int? clientId,
  6. dynamic vendorId,
  7. DateTime? createdAt,
})

Implementation

ReviewModel({
  this.id,
  this.rate,
  this.customComment,
  this.orderId,
  this.clientId,
  this.vendorId,
  this.createdAt,
});