Installment constructor

Installment({
  1. Price? amount,
  2. String? months,
})

Implementation

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