Product constructor

Product({
  1. String? description,
  2. String? displayName,
  3. String? name,
  4. String? productCategory,
  5. List<KeyValue>? productLabels,
})

Implementation

Product({
  this.description,
  this.displayName,
  this.name,
  this.productCategory,
  this.productLabels,
});