formatDateTime method
Implementation
String formatDateTime() {
if (this == null) return '';
DateTime date = toDateTime();
return date.toDateString();
}
String formatDateTime() {
if (this == null) return '';
DateTime date = toDateTime();
return date.toDateString();
}