To transmit custom events to Wingify, create key-value pairs using the subsequent code. The keys should correspond to the event properties of the custom event you intend to dispatch.
The below implementation is for Swift
var addToCartEvent = Dictionary<String, Any>()
addToCartEvent["productName"] = "Wingify Insights"
addToCartEvent["productQuantity"] = 1
VWO.triggerCustomEvent(customEventName: "addToCart", customData : addToCartEvent)
This snippet dispatches a custom event named "addToCart" to Wingify using the sendCustomEvent function.
Ensure that the event name (e.g., "addToCart") and the event property names (e.g., "productQuantity") are the same as defined by you in Wingify under the Data360 module.