ProductInstallment constructor

ProductInstallment({
  1. Price? amount,
  2. double? annualPercentageRate,
  3. String? creditType,
  4. Price? downpayment,
  5. String? months,
  6. Price? totalAmount,
})

Implementation

ProductInstallment({
  this.amount,
  this.annualPercentageRate,
  this.creditType,
  this.downpayment,
  this.months,
  this.totalAmount,
});