本文介绍了更新地图字段-Flutter的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何更新isVerified(布尔值)字段的数据.个人信息是地图",其中包含地址,然后是"isVerified".
How to update data of isVerified (Boolean) field.Personal Info is Map contains address and then isVerified.
推荐答案
要更新 isVerified
,您必须执行以下操作:
To update isVerified
, you have to do the following:
Firestore.instance.collection("collection Name").document("documentId").updateData({
"Personal Info.address.isVerified": true,
}).then((_) {
print("success!");
});
这篇关于更新地图字段-Flutter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!