Sending messages to an android app using Flutter with FCM is something quite easy to do, we are going to do set all the necessary things to be able to get the messages from Firebase and we are going to send messages using the rest API, in this case you can use your own backend server to send the messages, in this case I'm going to show you using insomnia, there are some other things to keep in mind, you can send the messages to specific devices , if you know their device IDs to groups of devices , if you know the registration IDs of the groups to topics , which are just keys that devices can subscribe to You'll note that there is no way to send to all devices explicitly. You can build such functionality with each of these though, for example: by subscribing the app to a topic when it starts (e.g. /topics/all) or by keeping a list of all device IDs, and then sending the message to all of those. we are going to test how to send messages based on the token generate by a de