formatDateTime method

String formatDateTime()

Implementation

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