ProductWeight constructor

ProductWeight({
  1. String? unit,
  2. double? value,
})

Implementation

ProductWeight({
  this.unit,
  this.value,
});