Logout
React native logout user guide
You can logout an already logged-in user from applozic by using the below code.
ApplozicChat.logoutUser((error, response) => {
if(error){
console.log("error" + error);
}else{
console.log(response);
}
});
Updated 9 months ago
Did this page help you?