I am using Flutter as Mobile front end framework and firebase realtime database as backend. I need to join two firebase nodes (say A and B). I added listeners to the node A to listen for realtime updates. How do I join node B and add the values from it to a single list created from node A? Node B can be read once as I dont need the realtime updates of it.
How can I achieve this in flutter?
Please advise.