Installment constructor

Installment({
  1. Price? amount,
  2. String? creditType,
  3. Price? downpayment,
  4. String? months,
})

Implementation

Installment({
  this.amount,
  this.creditType,
  this.downpayment,
  this.months,
});