onLogout method

void onLogout(
  1. dynamic isLogout
)

Implementation

void onLogout(isLogout) {
  /*mirrorFlyLog('Get.currentRoute', Get.currentRoute);
  if(isLogout && Get.currentRoute != Routes.login && SessionManagement.getLogin()){
    var token = SessionManagement.getToken().checkNull();
    SessionManagement.clear().then((value) {
      SessionManagement.setToken(token);
      Get.offAllNamed(Routes.login);
    });
  }*/
}