logoutWebUser method
dynamic
logoutWebUser()
Implementation
logoutWebUser() async {
if (await AppUtils.isNetConnected()) {
DialogUtils.progressLoading();
/*Mirrorfly.webLoginDetailsCleared();
Mirrorfly.logoutWebUser(loginQr).then((value) {
DialogUtils.hideLoading();
if (value != null && value) {
SessionManagement.setWebChatLogin(false);
NavUtils.back();
}
});*/
} else {
toToast(getTranslated("noInternetConnection"));
}
}