formatDate static method

String formatDate(
  1. DateTime date
)

Implementation

static String formatDate(DateTime date) {
  return dateFormat.format(date.toLocal());
}