toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final outOfPocketCost = this.outOfPocketCost;
final paybackYears = this.paybackYears;
final rebateValue = this.rebateValue;
final savings = this.savings;
final upfrontCost = this.upfrontCost;
return {
'outOfPocketCost': ?outOfPocketCost,
'paybackYears': ?paybackYears,
'rebateValue': ?rebateValue,
'savings': ?savings,
'upfrontCost': ?upfrontCost,
};
}