flutter timestamp to datetime code example
Example 1: flutter firestore timestamp to datetime
DateTime.parse(timestamp.toDate().toString())
Example 2: how to convert timestamp to datetime in dart
Timestamp time;
DateTime.fromMicrosecondsSinceEpoch(time.microsecondsSinceEpoch)
Example 3: flutter date time to timestamp
DateTime currentPhoneDate = DateTime.now();
Timestamp myTimeStamp = Timestamp.fromDate(currentPhoneDate);
DateTime myDateTime = myTimeStamp.toDate();
print("current phone data is: $currentPhoneDate");
print("current phone data is: $myDateTime");