setCustomEmail method

void setCustomEmail(
  1. String customEmail
)

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

Args: customEmail (String): customEmail is a variable of type String that represents the email address that the user wants to set as their custom email.

Implementation

void setCustomEmail(String customEmail) {
  _methods.setCustomEmail(customEmail);
}