Track General Event
This function logs an event with a specified name and optional parameters. It is used to track user actions or other significant occurrences within an application.
Method Signature:
Parameters:
eventName
(NSString *): The name of the event to be tracked.paramDict
(NSDictionary *, optional): A dictionary containing key-value pairs of additional data to be logged with the event.
Example Usage:
Last updated