setCustomId static method

Future<void> setCustomId(
  1. String customId
)

Set a custom id that will be sent with the audience data, this can be used if you want to target users coming from different platforms from MBurger. After setting this id the new audience data are sent to the server. @param customId The custom id, this value is saved and will be sent until removeCustomId is called.

Implementation

static Future<void> setCustomId(String customId) {
  return MBAudienceManager.shared.setCustomId(customId);
}