formatDateTime static method

String formatDateTime(
  1. DateTime date
)

Implementation

static String formatDateTime(DateTime date) {
  return DateFormat('yyyy-MM-dd HH:mm:ss').format(date);
}