timeStampToDateTime function

DateTime? timeStampToDateTime(
  1. Timestamp timestamp
)

Implementation

DateTime? timeStampToDateTime(Timestamp timestamp) {
  return timestamp.toDate();
}