I want to send a notification from Firebase to a specific Flutter mobile device.
The logic (in pseudocode) would look like this:
Firebase function onSomethingHappening (interestedCientId){
writeToFirestore // this part is easy
notifyClientDevice (interestedCientId)
}
I know Firebase has Messaging ability, but it seems to broadcast the message to all devices.
Is there a way through Messaging (or any other Firebase means) to send a message to a specific device?