FinancialDetails constructor

FinancialDetails({
  1. Money? costOfElectricityWithoutSolar,
  2. Money? federalIncentive,
  3. double? initialAcKwhPerYear,
  4. Money? lifetimeSrecTotal,
  5. bool? netMeteringAllowed,
  6. double? percentageExportedToGrid,
  7. Money? remainingLifetimeUtilityBill,
  8. double? solarPercentage,
  9. Money? stateIncentive,
  10. Money? utilityIncentive,
})

Implementation

FinancialDetails({
  this.costOfElectricityWithoutSolar,
  this.federalIncentive,
  this.initialAcKwhPerYear,
  this.lifetimeSrecTotal,
  this.netMeteringAllowed,
  this.percentageExportedToGrid,
  this.remainingLifetimeUtilityBill,
  this.solarPercentage,
  this.stateIncentive,
  this.utilityIncentive,
});