如何把用户ID在这个代码时,我正在生成一个待办事项列表,我需要检索的任务,某个用户?
Future<void> create(String todo, String description) async {
try {
await firestore.collection("Todo").add({
'todo': todo,
'description': description,
'timestamp': FieldValue.serverTimestamp()
});
} catch (e) {
print(e);
}
}
2条答案
按热度按时间uxh89sit1#
我解决了我的问题
kmbjn2e32#
}