createClickEvent static method

Future createClickEvent(
  1. String interactionId,
  2. Map<String, dynamic> properties
)

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,
  );
}