我从datePicker中选择一个"日期",并希望将该日期(键入为DateTime(保存到时间戳类型的Firestore中。 我使用Firestore.fromDate(date(,但它将数据存储在Firestore中作为地图(纳秒,秒(。
将 FirebaseTimestamp
类用作:
Timestamp.fromMicrosecondsSinceEpoch(myDateTime.microsecondsSinceEpoch)
还有许多其他构造函数,请查看文档。