I want to make FCM notification that send to my flutter app non-removable ( the user can not clear it when click on clear button or slide the notification to the left). I search for it but no answer about how to handle it with flutter and FCM notification.
Asked
Active
Viewed 122 times
1 Answers
1
To make notification non-removable ... just make ongoing: true
in flutter_local_notifications
package
AndroidNotificationDetails androidDetails = new AndroidNotificationDetails("channelId",
notificationModel.title, notificationModel.body,
ongoing: true);

Nuclear03020704
- 549
- 9
- 22

Ahmed Elbadawy
- 19
- 3