Another reason to want to customize this is that we are using 2 different 'sources' for generating push messages (our backend and Mixpanel).
Since Mixpanel uses it's own payload format, these messages are never posted as Notifications for the user to see.
This can be solved by a custom implementation of FirebaseMessagingService, but since the Unity plugin already has this implementation and since it declares such a service (in the android manifest) to handle these events, a second service cannot be created.
It could be nice to be able to use the Unity plugin while providing our own implementation of that service.
Right now, we have spent a few days of work before discarding everything and integrating the (native) android SDK.