logout method

void logout()

Logs out the current session and go to the Routes.auth page.

Implementation

void logout() {
  _authService.logout();
  router.auth();
  router.tab = HomeTab.chats;
}