Только передать в updateDate json, например: {"isLogged": true}
final CollectionReference collectionReference = Firestore.instance.collection("profiles");
collectionReference.document("profile")
.updateData({"isLogged": true})
.whenComplete(() async {
print("Completed");
}).catchError((e) => print(e));
Если вы используете транзакцию, вы можете сделать следующее:
Firestore.instance.runTransaction((transaction) async {
await transaction.update(
collectionReference.document("profile"), {"isLogged": true});
};
Надеюсь, это кому-нибудь поможет!;)