syncIdentifier static method

Future<void> syncIdentifier(
  1. String identifierType,
  2. String identifier,
  3. ACPMobileVisitorAuthenticationState authState
)

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

Implementation

static Future<void> syncIdentifier(
  String identifierType,
  String identifier,
  ACPMobileVisitorAuthenticationState authState,
) =>
    _channel.invokeMethod<void>('syncIdentifier', {
      'identifierType': identifierType,
      'identifier': identifier,
      'authState': authState.value
    });