toJson method

Map<String, dynamic> toJson()

Implementation

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