Managing Notifications
Detailed in this page is how you can manage in-app notifications for new in-app chat messages for your Flutter apps.
In-App Notifications
Disabling In-App Notifications
Use the following method to disable notifications that appear in-app.
Replies.setInAppNotificationsEnabled(false);In-App Notification Sound
When your app users receive an in-app notification through Luciq, sound is enabled by default. You can disable it with the following method.
Replies.setInAppNotificationSound(false);Get Unread Messages Count
You can use the following method to get the number of messages the user has yet to read.
final count = Replies.getUnreadRepliesCount();Last updated