userUniqAppend static method

void userUniqAppend(
  1. Map<String, List> properties, {
  2. String? appId,
})

The element appended to the library needs to be done to remove the processing, remove the support, and then import.

properties user property

appId It is used in multi-instance scenarios. If there is only one instance, it is recommended not to pass

Implementation

static void userUniqAppend(Map<String, List> properties, {String? appId}) {
  ThinkingAnalyticsAPI? instance = _getInstanceByAppId(appId);
  instance?.userUniqAppend(properties);
}