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