ddMMYYYYFormat static method

String ddMMYYYYFormat(
  1. DateTime date
)

Implementation

static String ddMMYYYYFormat(DateTime date) {
  return DateFormat('dd/MM/yyyy').format(date);
}