formatTimestamp function
Returns a formatted string representation of the given Timestamp
.
Implementation
String formatTimestamp(Timestamp dateTime) {
return formatDatetime(dateTime.toDate());
}
Returns a formatted string representation of the given Timestamp
.
String formatTimestamp(Timestamp dateTime) {
return formatDatetime(dateTime.toDate());
}