publishClickEvent static method

Future publishClickEvent(
  1. String selector,
  2. List<String> values
)

Publishes a click event for the given selector and context values asynchronously.

This method creates and publishes a click event using the EventManager. It's used to track clicks on specific UI elements identified by selectors.

selector The selector to identify the clicked component values Context values to pass along with the click event Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> publishClickEvent(
  String selector,
  List<String> values,
) {
  return BlueConicPlatform.instance.publishClickEvent(selector, values);
}