formatDateTime static method

String formatDateTime(
  1. DateTime dateTime
)

Implementation

static String formatDateTime(DateTime dateTime) {
  return DateFormat('yyyy-MM-dd – kk:mm').format(dateTime);
}