---
title: "Manually save PDF annotation 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-06-09T10:25:14.448Z"
description: "Nutrient will automatically save changed, created, or deleted annotations and bookmarks on several occasions. Additionally."
---

# Manually save annotations in Flutter

Nutrient will automatically save changed, created, or deleted annotations and bookmarks on several occasions. Additionally, saving can always be triggered manually by calling `save()`, like this:

```dart

await Nutrient.save();

```

When using the `NutrientView` widget, you can also call `save()` on the `PdfDocument` instance, like this:

```dart

await pdfDocument.save();

```

---

## Related pages

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

