RecurringPaymentRequest constructor

RecurringPaymentRequest({
  1. required String paymentDescription,
  2. required RecurringPaymentSummaryItem regularBilling,
  3. required String managementURL,
  4. RecurringPaymentSummaryItem? trialBilling,
  5. String? billingAgreement,
  6. String? tokenNotificationURL,
})

Implementation

RecurringPaymentRequest({
  required this.paymentDescription,
  required this.regularBilling,
  required this.managementURL,
  this.trialBilling,
  this.billingAgreement,
  this.tokenNotificationURL,
});