SpotFlowPaymentManager constructor

SpotFlowPaymentManager({
  1. required String key,
  2. required String customerEmail,
  3. String? planId,
  4. required String encryptionKey,
  5. String? customerName,
  6. String? customerPhoneNumber,
  7. String? customerId,
  8. String? paymentDescription,
  9. String? appName,
  10. bool debugMode = true,
  11. num? amount,
})

Implementation

SpotFlowPaymentManager({
  required this.key,
  required this.customerEmail,
  this.planId,
  required this.encryptionKey,
  this.customerName,
  this.customerPhoneNumber,
  this.customerId,
  this.paymentDescription,
  this.appLogo,
  this.appName,
  this.debugMode = true,
  this.amount,
});