PaymentElementAppleRecurringRequest constructor

const PaymentElementAppleRecurringRequest({
  1. required String paymentDescription,
  2. required String managementUrl,
  3. PaymentElementRecurringPaymentProperties? trialBilling,
  4. PaymentElementRecurringPaymentProperties? regularBilling,
})

Implementation

const factory PaymentElementAppleRecurringRequest({
  /// The description of the payment
  required String paymentDescription,

  /// Management url
  required String managementUrl,

  /// Information in case of a trial billing
  PaymentElementRecurringPaymentProperties? trialBilling,

  /// Information in case of a regular billing
  PaymentElementRecurringPaymentProperties? regularBilling,
}) = _PaymentElementAppleRecurringRequest;