setUserProfileID static method

Future<void> setUserProfileID(
  1. String userProfileID
)

Set user profile ID

Implementation

static Future<void> setUserProfileID(String userProfileID) async {
  _userProfileID = userProfileID;
  await Future.wait([
    m.AppMetrica.setUserProfileID(userProfileID),
    DSInternal.platform.invokeMethod('setUserProfile', userProfileID),
  ]);
}