MeasurementUnit constructor

MeasurementUnit({
  1. MeasurementUnitUnitType? type,
  2. MeasurementUnitArea? areaUnit,
  3. MeasurementUnitCustom? customUnit,
  4. MeasurementUnitGeneric? genericUnit,
  5. MeasurementUnitLength? lengthUnit,
  6. MeasurementUnitTime? timeUnit,
  7. MeasurementUnitVolume? volumeUnit,
  8. MeasurementUnitWeight? weightUnit,
})

Implementation

MeasurementUnit(
    {this.type,
    this.areaUnit,
    this.customUnit,
    this.genericUnit,
    this.lengthUnit,
    this.timeUnit,
    this.volumeUnit,
    this.weightUnit});