For the complete documentation index, see llms.txt. This page is also available as Markdown.

Disabling/Enabling Bug Reporting

Enable or disable the bug report, feedback, and question options separately in your Flutter app, and see how that changes the default invocation mode.

When your users invoke the SDK, a popup appears with default Prompt Options for them to "Report a bug" (submit a bug), "Suggest an improvement" (send you feedback), or "Ask a question" (send you a chat). These options can be disabled or enabled separately. When only a single option is enabled, it becomes the default invocation mode and the Prompt Options menu doesn't appear.

The below API completely disables all forms of bug, improvement, and question reports.

Dart
BugReporting.setEnabled(false);

You can also specify whether to show any of the Report a bug, Suggest an improvement, Ask a question options, or all using this API:

Dart
BugReporting.setReportTypes([ReportType.bug, ReportType.feedback, ReportType.question]);

By default, all three options are enabled if they are available in your current plan: https://luciq.ai/pricing

Last updated