IncomeBreakdown constructor

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

Implementation

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