BraintreeDropInRequest constructor

BraintreeDropInRequest({
  1. String? clientToken,
  2. String? tokenizationKey,
  3. String? amount,
  4. BraintreeBillingAddress? billingAddress,
  5. String? email,
  6. bool collectDeviceData = false,
  7. bool requestThreeDSecureVerification = false,
  8. BraintreeGooglePaymentRequest? googlePaymentRequest,
  9. BraintreePayPalRequest? paypalRequest,
  10. BraintreeApplePayRequest? applePayRequest,
  11. bool venmoEnabled = true,
  12. bool cardEnabled = true,
  13. bool paypalEnabled = true,
  14. bool maskCardNumber = false,
  15. bool maskSecurityCode = false,
  16. bool vaultManagerEnabled = false,
})

Implementation

BraintreeDropInRequest({
  this.clientToken,
  this.tokenizationKey,
  this.amount,
  this.billingAddress,
  this.email,
  this.collectDeviceData = false,
  this.requestThreeDSecureVerification = false,
  this.googlePaymentRequest,
  this.paypalRequest,
  this.applePayRequest,
  this.venmoEnabled = true,
  this.cardEnabled = true,
  this.paypalEnabled = true,
  this.maskCardNumber = false,
  this.maskSecurityCode = false,
  this.vaultManagerEnabled = false,
});