registerIdentifiedUser static method

Future<void> registerIdentifiedUser({
  1. String? userId,
  2. String? email,
})

Function to create a identified user in Intercom. You need to register your users before you can talk to them and track their activity in your app.

You can register a identified user either with userId or with email, but not with both.

Implementation

static Future<void> registerIdentifiedUser({String? userId, String? email}) {
  return IntercomFlutterPlatform.instance
      .registerIdentifiedUser(userId: userId, email: email);
}