formatDateTime static method

String formatDateTime(
  1. DateTime value
)

Implementation

static String formatDateTime(DateTime value) {
  return DateFormat("dd/MM/yyyy HH:mm:ss").format(value);
}