---
title: "Manually save PDF annotations in Flutter"
canonical_url: "https://www.nutrient.io/guides/flutter/annotations/save/manual-save/"
md_url: "https://www.nutrient.io/guides/flutter/annotations/save/manual-save.md"
last_updated: "2026-07-01T00:00:00.000Z"
description: "Manually save changed, created, or deleted annotations and bookmarks in Flutter."
---

# Manually save annotations in Flutter

Nutrient automatically saves changed, created, or deleted annotations and bookmarks at several points. You can also trigger a save manually through the loaded document’s controller, which is available from the `NutrientDocumentView` `onControllerReady` callback:

```dart

await controller.document.save();

```

---

## Related pages

- [Auto save annotations in Flutter](/guides/flutter/annotations/save/auto-save.md)
- [Embed annotations in a PDF file on Flutter](/guides/flutter/annotations/save/embed-into-pdf.md)
- [Customize annotation saving permissions in Flutter](/guides/flutter/annotations/save/saving-permissions.md)

