I have a WebGL app and since Firebase does not have plugin for Unity WebGL I am using REST and the basic GET call looks like this ( using Unity RestClient )
RestClient.Get($"https://rtdb.firebaseio.com/Users/{localUser_dbId}/partyID/.json").Then(response => { })
How can I implement listening to value changes in the database? Something like new message was added to chat etc.