SetupStripePayment constructor

SetupStripePayment({
  1. num amount = 1,
  2. String currency = "USD",
  3. required String token,
  4. String merchantDisplayName = "Your Name",
  5. String? customerId,
  6. String? customerName,
})

Implementation

SetupStripePayment({
  this.amount = 1,
  this.currency = "USD",
  required this.token,
  this.merchantDisplayName = "Your Name",
  this.customerId,
  this.customerName
});