setInternalProperty static method
Internal setter — bypasses reserved key check. Used by SDK internals (e.g. setting appid, platform, ip_country_code).
Implementation
static Future<void> setInternalProperty(String key, dynamic value) async {
await _lock.synchronized(() {
_commonProperties[key] = value;
});
}