ApplicationContext constructor

const ApplicationContext({
  1. String? brandName,
  2. String? locale,
  3. ShippingPreference? shippingPreference,
  4. UserAction? userAction,
  5. PaymentMethod? paymentMethod,
  6. required String returnUrl,
  7. required String cancelUrl,
})

Implementation

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