Product constructor

Product({
  1. Attributes? attributes,
  2. String? contentLanguage,
  3. List<DestinationStatus>? destinationStatuses,
  4. List<Issue>? issues,
  5. String? name,
  6. String? parent,
  7. String? productId,
  8. String? targetCountry,
})

Implementation

Product({
  this.attributes,
  this.contentLanguage,
  this.destinationStatuses,
  this.issues,
  this.name,
  this.parent,
  this.productId,
  this.targetCountry,
});