flutter_local_notifications
flutter_local_notifications copied to clipboard
getActiveNotifications() returns no payloads
When retrieving active notifications with getActiveNotifications), the payload is always null, even if the notification has a payload that is correctly passed to onDidReceiveNotificationResponse.
final notifications = await flutterLocalNotificationsPlugin .getActiveNotifications(); for (final notification in notifications) { print( 'Checking notification ${notification.id} with payload ${notification.payload}'); }
OS: Android 16 flutter_local_notifications version: 19.4.2
Can you provide a link to a repo hosting a minimal app that can reproduce the issue? Have you also checked that you can reproduce this with the example app?