identifyAnonymousUser static method

  1. @Deprecated('Use identifyUnverifiedUser instead.')
Future<void> identifyAnonymousUser(
  1. String userID
)

Identifies an anonymous user after the SDK has been configured.

The identification method should be called when you receive a callback or you have your user's data ready.

@remarks Make sure that you have called the configure(appID) method before.

@param userID A string used to identify the user (can be an email). @deprecated Use identifyUnverifiedUser instead.

Implementation

@Deprecated('Use identifyUnverifiedUser instead.')
static Future<void> identifyAnonymousUser(String userID) {
  return DevRevSDKPlatform.instance.identifyAnonymousUser(userID);
}