logout method
Logs out and clears all local user data and stored credentials.
Implementation
Future<void> logout() async {
await _database.delete(_database.users).go();
await cookieJar.deleteAll();
await _clearCredentials();
await _clearAvatarCache();
}