QuantityDto constructor

QuantityDto({
  1. num? value,
  2. String? unit,
})

Returns a new QuantityDto instance.

Implementation

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