CashPurchaseSavings constructor

CashPurchaseSavings({
  1. Money? outOfPocketCost,
  2. double? paybackYears,
  3. Money? rebateValue,
  4. SavingsOverTime? savings,
  5. Money? upfrontCost,
})

Implementation

CashPurchaseSavings({
  this.outOfPocketCost,
  this.paybackYears,
  this.rebateValue,
  this.savings,
  this.upfrontCost,
});