loginUnidentifiedUser method

Future<void> loginUnidentifiedUser({
  1. IntercomStatusCallback? statusCallback,
})

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

Implementation

Future<void> loginUnidentifiedUser({IntercomStatusCallback? statusCallback}) {
  return IntercomFlutterPlatform.instance
      .loginUnidentifiedUser(statusCallback: statusCallback);
}