PmbDevice constructor

PmbDevice({
  1. String? id,
  2. String? serial,
  3. String? label,
  4. dynamic publicName,
  5. dynamic purchasedAt,
  6. dynamic warrantyUntil,
  7. String? qrCodeDevice,
  8. double? lat,
  9. double? lng,
  10. int? closeOpenSchedule,
  11. int? readyToPour,
  12. int? amountRent,
  13. int? amountBuy,
  14. String? currency,
  15. int? width,
  16. int? height,
  17. int? depth,
  18. int? numberOfPumps,
  19. int? debitPerSec,
  20. int? distance,
  21. List<Beers>? beers,
})

Implementation

PmbDevice(
    {this.id,
    this.serial,
    this.label,
    this.publicName,
    this.purchasedAt,
    this.warrantyUntil,
    this.qrCodeDevice,
    this.lat,
    this.lng,
    this.closeOpenSchedule,
    this.readyToPour,
    this.amountRent,
    this.amountBuy,
    this.currency,
    this.width,
    this.height,
    this.depth,
    this.numberOfPumps,
    this.debitPerSec,
    this.distance,
    this.beers});