> For the complete documentation index, see [llms.txt](https://docs.cotter.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cotter.app/sdk-reference/flutter/signing-a-user-out.md).

# Signing a User Out

## Using our logout function

We provide a simple logout function that signs out the currently logged in user. Here's how to use it:

```dart
Cotter cotter = new Cotter(apiKeyID: YOUR_API_KEY_ID);
void yourLogoutFunction() async {
    await cotter.logOut();
    _goToLoginPage(); // your own logic after logging out
}
```

#### What does \`logOut\` do ?

It clears out OAuth tokens inside the device's secure storage. The cleared out items include:

1. Access Token
2. Refresh Token
3. ID Token
4. Token Type


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cotter.app/sdk-reference/flutter/signing-a-user-out.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
