How to avoid creating multiple docs in firebase everytime user update his profile info in flutter
So I just created a form for the user to key in his/her personal info in flutter. This is the code as a begining: import 'package:cloud_firestore/cloud_firestore.dart'; class InsertProfInfoToDB { String? name; int? height; int? weight; String? gender; String? birthDateInString; InsertProfInfoToDB();…