LoginSignup
49
28

More than 3 years have passed since last update.

【Flutter】FirestoreのTimestampとDartのDateTimeの日付とタイムスタンプの相互変換の方法について

Posted at

はじめに

やりかた忘れるのでメモしておきます。

Timestamp から DateTime への変換

Map<String, dynamic> map = ... // firestoreからのドキュメントデータが入ってるとする

if (map['createdAt'] is Timestamp) {
  DateTime createdAt = map["createdAt"].toDate();
}

DateTime から Timestamp への変換

Timestamp createdAtTimestamp = Timestamp.fromDate(createdAt);
49
28
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
49
28