PaymentIntent constructor

PaymentIntent({
  1. PaymentMethodRequest? paymentMethod,
  2. String? paymentMethodId,
  3. String? returnURL,
  4. @required String? clientSecret,
  5. bool? isSavingPaymentMethod,
})

Implementation

PaymentIntent({
  this.paymentMethod,
  this.paymentMethodId,
  this.returnURL,
  @required this.clientSecret,
  this.isSavingPaymentMethod,
});