setCustomIdentifier method

void setCustomIdentifier(
  1. String customIdentifier
)

This method sets a custom identifier in the parameters of every event. You can pass a custom identifier to match your customers in our database.

Args: customIdentifier (String): customIdentifier is a String parameter that represents a unique customer's custom identifier.

Implementation

void setCustomIdentifier(String customIdentifier) {
  _methods.setCustomIdentifier(customIdentifier);
}