syncIdentifiersWithAuthState static method

Future<void> syncIdentifiersWithAuthState(
  1. Map<String, String> identifiers,
  2. ACPMobileVisitorAuthenticationState authState
)

Updates the given customer IDs with the Adobe Experience Cloud ID Service.

Implementation

static Future<void> syncIdentifiersWithAuthState(
  Map<String, String> identifiers,
  ACPMobileVisitorAuthenticationState authState,
) =>
    _channel.invokeMethod<void>(
      'syncIdentifiersWithAuthState',
      {
        'identifiers': identifiers,
        'authState': authState.value,
      },
    );