toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final amount = this.amount;
final downpayment = this.downpayment;
final months = this.months;
return {'amount': ?amount, 'downpayment': ?downpayment, 'months': ?months};
}