IncomeBreakdown constructor

IncomeBreakdown({
  1. IncomeBreakdownType? type,
  2. double? rate,
  3. double? hours,
  4. double? total,
})

Implementation

IncomeBreakdown({
  this.type,
  this.rate,
  this.hours,
  this.total,
});