PaymentLinkPaymentIntentData constructor

const PaymentLinkPaymentIntentData({
  1. PaymentLinkPaymentIntentDataCaptureMethod? captureMethod,
  2. String? description,
  3. required Map<String, String> metadata,
  4. ConfirmationTokenSetupFutureUsage? setupFutureUsage,
  5. String? statementDescriptor,
  6. String? statementDescriptorSuffix,
  7. String? transferGroup,
})

Indicates the parameters to be passed to PaymentIntent creation during checkout.

Implementation

const PaymentLinkPaymentIntentData({
  this.captureMethod,
  this.description,
  required this.metadata,
  this.setupFutureUsage,
  this.statementDescriptor,
  this.statementDescriptorSuffix,
  this.transferGroup,
});