identifiers property
Future<List<Identifiable> >
get
identifiers
Returns all customer identifiers that were previously synced with the Adobe Experience Cloud.
Implementation
static Future<List<Identifiable>> get identifiers => _channel
.invokeListMethod<dynamic>(
'getIdentifiers',
)
.then((value) => (value ?? [])
.map<Identifiable>((data) => Identifiable(data))
.toList());