publishAdvancedEvent static method

Future publishAdvancedEvent(
  1. String name,
  2. List<String> values
)

Publishes an advanced event with custom name and context values asynchronously.

This method creates and publishes custom advanced events with specific names and context values for complex tracking scenarios.

name The name to identify the advanced event values Context values to pass along with the advanced event Returns a Future<dynamic> that completes when the operation is done

Implementation

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