logout method

dynamic logout()

Logout the user and move user to the sign-in screen

Implementation

logout() {
  PlexSp.instance.setString(PlexSp.loggedInUser, null);
  Plex.offAndToNamed(PlexRoutesPaths.loginPath);
  onLogout?.call();
}