getSuperProperties static method

Future<Map<String, dynamic>?> getSuperProperties({
  1. String? appId,
})

Gets the public event properties that have been set.

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

Implementation

static Future<Map<String, dynamic>?> getSuperProperties(
    {String? appId}) async {
  ThinkingAnalyticsAPI? instance = _getInstanceByAppId(appId);
  return await instance?.getSuperProperties();
}