final transacDisplayName = 'Checkout Shampoo';
showSnackbar(context, 'Payments not yet supported on web.');
final dropInRequest = BraintreeDropInRequest(
clientToken: braintreeClientToken(),
paypalRequest: BraintreePayPalRequest(
amount: transacAmount.toString(),
displayName: transacDisplayName,
googlePaymentRequest: BraintreeGooglePaymentRequest(
totalPrice: transacAmount.toString(),
billingAddressRequired: false,
googleMerchantID: googleMerchantId(),
applePayRequest: BraintreeApplePayRequest(
displayName: transacDisplayName,
appleMerchantID: appleMerchantId(),