Product constructor

Product({
  1. int? productId,
  2. String? serialNumber,
  3. String? productRefLabel,
  4. String? productCustomerLabel,
  5. String? pictureUrl,
})

Implementation

Product(
    {this.productId,
    this.serialNumber,
    this.productRefLabel,
    this.productCustomerLabel,
    this.pictureUrl});