flutter-braintree
flutter-braintree copied to clipboard
Not getting venmo option in BraintreeDropInRequest

Only getting paypal and card option here in BraintreeDropInRequest. how can I get venmo option also?
var request = BraintreeDropInRequest(
vaultManagerEnabled: true,
applePayRequest: BraintreeApplePayRequest(
amount: amountInt.toDouble(),
displayName: "TEST",
countryCode: "PL",
currencyCode: "PLD",
appleMerchantID: "merchant.id.here"),
venmoEnabled: true,
tokenizationKey: tokenizationKey,
collectDeviceData: true,
googlePaymentRequest: BraintreeGooglePaymentRequest(
totalPrice: amountInt.toString(),
currencyCode: 'PLD',
billingAddressRequired: false,
),
paypalRequest: BraintreePayPalRequest(
amount: amountInt.toString(),
displayName: 'TEST',
),
cardEnabled: true,
);
Please help me with this. Thank you.
same error. Is there any update on this?
Same bug, can't use Venmo.
+1
Same error. Any update?
I was able to solve the same issues by following the instructions here:
- https://developer.paypal.com/braintree/articles/guides/payment-methods/venmo#testing
- https://developer.paypal.com/braintree/docs/guides/venmo/client-side
I was able to solve the same issues by following the instructions here:
- https://developer.paypal.com/braintree/articles/guides/payment-methods/venmo#testing
- https://developer.paypal.com/braintree/docs/guides/venmo/client-side
Can you share the code please?