flutter timestamp to date 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; //from firebase
DateTime.fromMicrosecondsSinceEpoch(time.microsecondsSinceEpoch)