setAdvertisingIdentifier method
Implementation
Future<dynamic> setAdvertisingIdentifier(String advertisingIdentifier) async {
try {
return await MobileCore.setAdvertisingIdentifier(advertisingIdentifier);
} catch (e) {
debugPrint('Error setting Adobe Analytics Advertising Identifier: $e');
throw StateError(
'Error setting Adobe Analytics Advertising Identifier: $e');
}
}