syncIdentifier static method
Future<void>
syncIdentifier(
- String identifierType,
- String identifier,
- MobileVisitorAuthenticationState authState
Updates the given customer ID with the Adobe Experience Cloud ID Service.
Implementation
static Future<void> syncIdentifier(
String identifierType,
String identifier,
MobileVisitorAuthenticationState authState,
) =>
_channel.invokeMethod<void>('syncIdentifier', {
'identifierType': identifierType,
'identifier': identifier,
'authState': authState.value
});