formatDateTime static method

String formatDateTime(
  1. DateTime date
)

Implementation

static String formatDateTime(DateTime date) {
  return dateTimeFormat.format(date.toLocal());
}