ApplicationContext constructor

const ApplicationContext({
  1. String? brandName,
  2. String? locale,
  3. LandingPage? landingPage,
  4. ShippingPreference? shippingPreference,
  5. UserAction? userAction,
  6. PaymentMethod? paymentMethod,
  7. String? returnUrl,
  8. String? cancelUrl,
  9. StoredPaymentSource? storedPaymentSource,
})

Implementation

const ApplicationContext({
  this.brandName,
  this.locale,
  this.landingPage,
  this.shippingPreference,
  this.userAction,
  this.paymentMethod,
  this.returnUrl,
  this.cancelUrl,
  this.storedPaymentSource,
});