This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /guides/flutter/migration-guides/flutter-3-6-migration-guide.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. Flutter SDK 3.6 migration guide

Nutrient Flutter SDK 3.6 introduces named optional parameters for the present method. This means that you can pass the configuration parameter as a named parameter. To update your code, change the present method calls as follows:

await PSPDFKit.present(
documentPath,
configuration,
);
await PSPDFKit.present(
documentPath,
configuration: configuration,
);