CompensationEntry constructor

CompensationEntry({
  1. Money? amount,
  2. String? description,
  3. double? expectedUnitsPerYear,
  4. CompensationRange? range,
  5. String? type,
  6. String? unit,
})

Implementation

CompensationEntry({
  this.amount,
  this.description,
  this.expectedUnitsPerYear,
  this.range,
  this.type,
  this.unit,
});