Dispenser constructor

Dispenser({
  1. int? id,
  2. String? dispenserId,
  3. int? merchantId,
  4. String? serialNo,
  5. String? manufacturer,
  6. String? modelNo,
  7. String? createdAt,
  8. String? updatedAt,
  9. int? stationId,
  10. int? productId,
  11. int? dongleId,
  12. int? status,
  13. String? pumpCode,
  14. Product? product,
})

Implementation

Dispenser(
    {this.id,
    this.dispenserId,
    this.merchantId,
    this.serialNo,
    this.manufacturer,
    this.modelNo,
    this.createdAt,
    this.updatedAt,
    this.stationId,
    this.productId,
    this.dongleId,
    this.status,
    this.pumpCode,
    this.product});