setCustomIdentifier method

Future<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

Future<void> setCustomIdentifier(String customIdentifier) async {
  return await _methods.setCustomIdentifier(customIdentifier);
}