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