Custom Id
MBAudience.setCustomId('CUSTOM_ID');MBAudience.removeCustomId();String customId = await MBAudience.getCustomId();Last updated
You can set a custom id in order to track/target users with id coming from different platforms.
To set a custom id:
MBAudience.setCustomId('CUSTOM_ID');To remove it:
MBAudience.removeCustomId();To retrieve the current saved id:
String customId = await MBAudience.getCustomId();Last updated