isUserIdentified static method

Future<bool> isUserIdentified()

Indicates whether or not this user has a custom identity specified for them. Note that this is independent of installs. If you call setIdentity, this device will have that identity associated with this user until logout is called. This includes persisting through uninstalls, as we track device id.

Implementation

static Future<bool> isUserIdentified() async {
  return FlutterBranchSdkPlatform.instance.isUserIdentified();
}