Flutter Firestore Server side Timestamp

前端 未结 3 775
借酒劲吻你
借酒劲吻你 2020-12-03 13:22

I need to add a server side timestamp on new documents added to Firestore using a Flutter app. I see I am supposed to use FieldValue.serverTimestamp but I am no

3条回答
  •  离开以前
    2020-12-03 14:00

    'timestamp' : Timestamp.now()

    Timestamp.now() is part of cloud_firestore;


    Example Screenshot showing that the library is imported from cloud_firestore, and creates a server-generated timestamp in the written data. Docs

提交回复
热议问题