identifiers property
Future<List<ACPMobileVisitorId> >
get
identifiers
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());