identifyVerifiedUser static method
Identifies a verified user after the SDK has been configured.
The verification process is done between your and DevRev's backend. 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 sessionToken A session token generated by your backend.
Implementation
static Future<void> identifyVerifiedUser(String userID, String sessionToken) {
return DevRevSDKPlatform.instance.identifyVerifiedUser(
userID,
sessionToken,
);
}