Android 如何在颤振本地通知上查看挂起的通知?

Android 如何在颤振本地通知上查看挂起的通知?,android,flutter,push-notification,Android,Flutter,Push Notification,我可以安排通知,但我希望看到挂起的通知处于活动状态。有可能吗? 通知的保存时间显示在哪里 例: 我想知道“RepeatInterval”值存储在哪里您可以使用pendingNotificationRequests获取挂起的通知: var pendingNotificationRequests= 等待LocalNotificationsPlugin.pendingNotificationRequests() notifications.periodicallyShow(id, title, bod

我可以安排通知,但我希望看到挂起的通知处于活动状态。有可能吗? 通知的保存时间显示在哪里

例:


我想知道“RepeatInterval”值存储在哪里

您可以使用pendingNotificationRequests获取挂起的通知

var pendingNotificationRequests=
等待LocalNotificationsPlugin.pendingNotificationRequests()

notifications.periodicallyShow(id, title, body, RepeatInterval.EveryMinute, _ongoing);