Flutter Firstore时间戳现在/当前日期

时间:2020-07-08 15:15:29

标签: flutter google-cloud-firestore timestamp

下面是我使用过并很方便的所有Firebase时间戳方法。

1 个答案:

答案 0 :(得分:1)

如何获取Firestore时间戳(今天的日期)

Timestamp timestampDate = Timestamp.now();

如何从日期时间设置时间戳

DateTime someDate = DateTime.now();
Timestamp timestampDate =  Timestamp.fromDate(DateTime(someDate.year, someDate.month, someDate.day))

如何从时间戳获取Date对象

DateTime dateTime = timestampDate.toDate();