MeasureFormat constructor

const MeasureFormat({
  1. int? fractionDigits = 2,
  2. bool trimTrailingZeros = true,
  3. String separator = ' ',
  4. MeasureValueFormatter? valueFormatter,
  5. MeasureUnitFormatter? unitFormatter,
})

Implementation

const MeasureFormat({
  this.fractionDigits = 2,
  this.trimTrailingZeros = true,
  this.separator = ' ',
  this.valueFormatter,
  this.unitFormatter,
});