Answers for "how to obtain current timestamp in flutter"

5

flutter date time to timestamp

DateTime currentPhoneDate = DateTime.now(); //DateTime

Timestamp myTimeStamp = Timestamp.fromDate(currentPhoneDate); //To TimeStamp

DateTime myDateTime = myTimeStamp.toDate(); // TimeStamp to DateTime

print("current phone data is: $currentPhoneDate");
print("current phone data is: $myDateTime");
Posted by: Guest on June-22-2020
0

how to add a timestamp with each message flutter

FirebaseFirestore.instance.collection('messages').orderBy('createdAt', descending: true)
Posted by: Guest on November-29-2020

Code answers related to "how to obtain current timestamp in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language