formatDate static method

String formatDate(
  1. DateTime value
)

Implementation

static String formatDate(DateTime value) {
  return DateFormat("dd/MM/yyyy").format(value);
}