Prompt Options
This section covers how to control the popup menu that appears when your app users invoke Luciq for Flutter apps.
// Disable the Bugs, Feedback, & Questions. If disabled, "Report a problem" "Suggest an improvement" & "Ask a Question" are removed from Luciq's prompt, and manually showing the bug reporting or feedback doesn't have an effect.
BugReporting.setEnabled(true);
// Specify which of the feedback, bug, or question options appear in the prompt options
BugReporting.setReportTypes([ReportType.bug, ReportType.feedback, ReportType.question]);
// Disable the Replies. If disabled, the chats list button is removed from Luciq's prompt, the in-app notifications are disabled, and manually showing the chats list doesn't have an effect.
Replies.setEnabled(true);Last updated