getIdentities method
Implementation
Future<dynamic> getIdentities() async {
try {
return await Identity.identities;
} catch (e) {
debugPrint('Error getting Adobe Analytics Identities: $e');
throw StateError('Error getting Adobe Analytics Identities: $e');
}
}