CheckoutProps constructor

CheckoutProps({
  1. String? checkoutId,
  2. dynamic onMessage(
    1. dynamic
    )?,
  3. dynamic onError(
    1. dynamic
    )?,
  4. String? cartId,
  5. String? storefrontToken,
  6. String? storeId,
  7. String? fbPixel,
  8. String? gaTrackingID,
  9. String? webEngageID,
  10. String? moEngageID,
  11. String? sessionId,
  12. Map<String, String>? utmParams,
})

Implementation

CheckoutProps({
  this.checkoutId,
  this.onMessage,
  this.onError,
  String? cartId,
  String? storefrontToken,
  String? storeId,
  String? fbPixel,
  String? gaTrackingID,
  String? webEngageID,
  String? moEngageID,
  String? sessionId,
  Map<String, String>? utmParams,
}) : super(
        cartId: cartId,
        storefrontToken: storefrontToken,
        storeId: storeId,
        fbPixel: fbPixel,
        gaTrackingID: gaTrackingID,
        webEngageID: webEngageID,
        moEngageID: moEngageID,
        sessionId: sessionId,
        utmParams: utmParams,
      );