identifyUnverifiedUser static method

Future<void> identifyUnverifiedUser(
  1. String userID,
  2. String? organizationID
)

Identifies a non-verified 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). @param organizationID An optional unique identifier of the organization the user belongs to.

Implementation

static Future<void> identifyUnverifiedUser(
  String userID,
  String? organizationID,
) {
  return DevRevSDKPlatform.instance.identifyUnverifiedUser(
    userID,
    organizationID,
  );
}