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