setUserProfileID static method
Set user profile ID
Implementation
static Future<void> setUserProfileID(String userProfileID) async {
_userProfileID = userProfileID;
if (_lockedMetricaProfile) return;
await Future.wait([
m.AppMetrica.setUserProfileID(userProfileID),
if (!kIsWeb && Platform.isAndroid)
DSInternal.platform.invokeMethod('setUserProfile', userProfileID),
]);
}