Product constructor

Product({
  1. int? id,
  2. String? productId,
  3. int? merchantId,
  4. String? name,
  5. String? description,
  6. Null stationId,
  7. String? priceLiter,
  8. String? priceGallon,
  9. String? priceCurrency,
  10. String? createdAt,
  11. String? updatedAt,
})

Implementation

Product(
    {this.id,
    this.productId,
    this.merchantId,
    this.name,
    this.description,
    this.stationId,
    this.priceLiter,
    this.priceGallon,
    this.priceCurrency,
    this.createdAt,
    this.updatedAt});