What's the difference between flutter_local_notifications and awesome_notifications packages for notification?
After reading through docs and repository I understood, that historically awesome_notifications had Push-notification feature built-in and no firebase_messaging was needed. But that raised issues as people used both awesome_notifications and firebase_messaging, which led to problems when used in conjunction.
So the author of awesome_notifications removed Push-notification and kept it local.
Which leads to a question: if awesome_notifications is now a plugin for local notifications, what does it have now that flutter_local_notifications doesn't have?
So why would we need awesome_notifications plugin?