ProductModel constructor

ProductModel({
  1. int? terminalId,
  2. int? id,
  3. String? label,
  4. String? description,
  5. String? productSerial,
  6. int? purchasedAt,
  7. int? warrantyUntil,
  8. String? productCat,
  9. String? categoryColor,
  10. String? productRef,
  11. String? codeReference,
  12. String? pictureUrl,
  13. int? statusId,
  14. String? statusLabel,
  15. String? statusColor,
  16. int? statusDisplay,
  17. double? lat,
  18. double? lng,
  19. int? placeId,
  20. String? placeCity,
  21. String? placeLabel,
  22. double? placeLng,
  23. double? placeLat,
  24. String? placeCountry,
  25. String? placeCountryCode,
  26. String? placeZip,
  27. String? placeStreet1,
  28. String? placeStreet2,
  29. String? utcModifier,
  30. String? macAddress,
  31. String? moreInfos,
  32. int? hasOwner,
})

Implementation

ProductModel(
    {this.terminalId,
    this.id,
    this.label,
    this.description,
    this.productSerial,
    this.purchasedAt,
    this.warrantyUntil,
    this.productCat,
    this.categoryColor,
    this.productRef,
    this.codeReference,
    this.pictureUrl,
    this.statusId,
    this.statusLabel,
    this.statusColor,
    this.statusDisplay,
    this.lat,
    this.lng,
    this.placeId,
    this.placeCity,
    this.placeLabel,
    this.placeLng,
    this.placeLat,
    this.placeCountry,
    this.placeCountryCode,
    this.placeZip,
    this.placeStreet1,
    this.placeStreet2,
    this.utcModifier,
    this.macAddress,
    this.moreInfos,
    this.hasOwner});