trackEvent static method

Future<void> trackEvent(
  1. String name,
  2. Map<String, String> properties
)

Tracks an event with the given name and properties.

This method should be called to log custom events in the application.

@remarks Make sure that you have called the configure(appID) method before.

@param name The name of the event to be tracked. @param properties A map containing additional properties for the event.

Implementation

static Future<void> trackEvent(String name, Map<String, String> properties) {
  return DevRevSDKPlatform.instance.trackEvent(name, properties);
}