Skip to main content

events

RampKit.onEvent { event in
  // handle event
}
Event types include: flowStarted, screenShown, ctaTapped, purchaseCompleted, flowCompleted, and more. Forward to analytics:
RampKit.onEvent { event in
  Analytics.track(event.type.rawValue, properties: event.properties)
}