HumanizeOptions constructor

const HumanizeOptions({
  1. List<Units> units = Units.values,
  2. String spacer = ' ',
  3. String delimiter = ', ',
  4. String? conjunction,
  5. bool lastPrefixComma = false,
})

Implementation

const HumanizeOptions({
  this.units = Units.values,
  this.spacer = ' ',
  this.delimiter = ', ',
  this.conjunction,
  this.lastPrefixComma = false,
});