setCustomEmail method
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
Future<void> setCustomEmail(String customEmail) async {
return await _methods.setCustomEmail(customEmail);
}