ProductsData constructor

ProductsData({
  1. int? id,
  2. String? productId,
  3. double? price,
  4. String? name,
  5. String? description,
  6. int? money,
  7. int? status,
  8. int? type,
})

Implementation

ProductsData(
    {this.id,
    this.productId,
    this.price,
    this.name,
    this.description,
    this.money,
    this.status,
    this.type});