Adding map in Firestore? – Flutter
How can I append a new Map type in firestore? void addUser() async { final us = _firestore.collection("users").doc(_search.text); us.update({ "requests": ( {_auth.currentUser?.email: rep} ), }); } Am using this method but the requests field in my firestore overwrites the previous…