associateIdentifier method
- String key,
- String? identifier
Associates an identifier.
Implementation
Future<void> associateIdentifier(String key, String? identifier) async {
var args = [key, identifier];
return await _module.channel.invokeMethod('analytics#associateIdentifier', args);
}