// Simple event
Zixflow.shared.track(name: "Button Clicked")
// Event with properties
Zixflow.shared.track(
name: "Product Purchased",
properties: [
"product_id": "123",
"product_name": "Widget",
"price": 29.99,
"currency": "USD"
]
)
// Event with timestamp
Zixflow.shared.track(
name: "Order Completed",
properties: ["order_id": "ABC123"],
timestamp: Date()
)