BraintreeGooglePaymentRequest constructor

BraintreeGooglePaymentRequest({
  1. required String totalPrice,
  2. required String currencyCode,
  3. bool billingAddressRequired = true,
  4. String? googleMerchantID,
})

Implementation

BraintreeGooglePaymentRequest({
  required this.totalPrice,
  required this.currencyCode,
  this.billingAddressRequired = true,
  this.googleMerchantID,
});