We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 593d487 commit ca7abafCopy full SHA for ca7abaf
lib/app/view/app.dart
@@ -220,6 +220,7 @@ class _AppViewState extends State<_AppView> {
220
_routerLogger.fine('Notification opened app with payload: $payload');
221
final contentType = payload.contentType;
222
final contentId = payload.contentId;
223
+ final notificationId = payload.notificationId;
224
225
if (contentType == ContentType.headline && contentId.isNotEmpty) {
226
// Guard against using BuildContext across async gaps by checking
@@ -228,6 +229,7 @@ class _AppViewState extends State<_AppView> {
228
229
await HeadlineTapHandler.handleTapFromSystemNotification(
230
context,
231
contentId,
232
+ notificationId: notificationId,
233
);
234
}
235
0 commit comments