ProductCharacteristic constructor

ProductCharacteristic({
  1. String? id,
  2. String? name,
  3. String? valueType,
  4. String? value,
})

Implementation

ProductCharacteristic({
  this.id,
  this.name,
  this.valueType,
  this.value,
});