Currently we are using the awesome notifications package to display a notification in our Flutter app. We want to constantly update the contents of this notification. Specifically, we want to display a timer within the notification. For now we create a new notification every second with the altered content. This means a lot of notifications are constantly created and removed.
Is there a way to update the existing notification instead of constantly creating a new one?
This with the package we are currently using or a different Flutter package. Ideally we would like to prevent having to use platform specific coding.