identifiers property

Returns all customer identifiers that were previously synced with the Adobe Experience Cloud.

Implementation

static Future<List<ACPMobileVisitorId>> get identifiers => _channel
    .invokeListMethod<dynamic>(
      'getIdentifiers',
    )
    .then((value) => (value ?? [])
        .map<ACPMobileVisitorId>((data) => ACPMobileVisitorId(data))
        .toList());