createConversionEvent static method

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

Creates a conversion event for goal tracking asynchronously.

Conversion events are used to track when users complete important actions such as purchases, sign-ups, or other business goals.

interactionId The ID of the interaction that led to the conversion properties A map of additional properties for the conversion event Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> createConversionEvent(
  String interactionId,
  Map<String, dynamic> properties,
) {
  return BlueConicPlatform.instance.createConversionEvent(
    interactionId,
    properties,
  );
}