Formats a DateTime into 'dd-MM-yyyy' format and converts to uppercase.
static String formatDateddmmyy(DateTime date) { return DateFormat('dd-MM-yyyy').format(date).toUpperCase(); }