Product constructor

Product({
  1. String? id,
  2. String? createdAt,
  3. bool? verifyRatings,
  4. bool? showNoStocks,
  5. String? showPrice,
})

Implementation

Product(
    {this.id,
    this.createdAt,
    this.verifyRatings,
    this.showNoStocks,
    this.showPrice});