ProductSpecification constructor

ProductSpecification({
  1. String? id,
  2. String? name,
  3. String? href,
  4. dynamic version,
})

Implementation

ProductSpecification({
  this.id,
  this.name,
  this.href,
  this.version,
});