createClickEvent static method
Creates a click event for user interaction tracking asynchronously.
Click events are used to track when users click on specific elements or perform click-based interactions within the application.
interactionId The ID of the interaction being clicked
properties A map of additional properties for the click event
Returns a Future<dynamic> that completes when the operation is done
Implementation
static Future<dynamic> createClickEvent(
String interactionId,
Map<String, dynamic> properties,
) {
return BlueConicPlatform.instance.createClickEvent(
interactionId,
properties,
);
}