Payment constructor

Payment({
  1. String? paymentKey,
  2. bool? saveCardDefault,
  3. bool? showSaveCard,
  4. Color? themeColor,
  5. String? language,
  6. bool? actionbar,
  7. String? token,
  8. String? maskedPanNumber,
  9. Customer? customer,
})

Implementation

Payment({
  this.paymentKey,
  this.saveCardDefault,
  this.showSaveCard,
  this.themeColor,
  this.language,
  this.actionbar,
  this.token,
  this.maskedPanNumber,
  this.customer,
});