InstallmentPlan constructor

InstallmentPlan({
  1. String? id,
  2. int? installmentPeriod,
  3. double? interestRate,
  4. AmountData? amount,
  5. double? upfrontFees,
  6. String? issuerCode,
  7. String? issuerNameEn,
  8. String? issuerNameAr,
  9. String? issuerLogoAr,
  10. String? issuerLogoEn,
  11. String? processingFeesType,
  12. String? processingFeesAmount,
  13. String? feeDisplayValue,
})

Implementation

InstallmentPlan({
  this.id,
  this.installmentPeriod,
  this.interestRate,
  this.amount,
  this.upfrontFees,
  this.issuerCode,
  this.issuerNameEn,
  this.issuerNameAr,
  this.issuerLogoAr,
  this.issuerLogoEn,
  this.processingFeesType,
  this.processingFeesAmount,
  this.feeDisplayValue,
});