registerIdentifiedUser method

  1. @Deprecated("use loginIdentifiedUser")
  2. @override
Future<void> registerIdentifiedUser({
  1. String? userId,
  2. String? email,
})
override

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

@Deprecated("use loginIdentifiedUser")
@override
Future<void> registerIdentifiedUser({String? userId, String? email}) {
  return loginIdentifiedUser(userId: userId, email: email);
}