taskDueDateFormat function

String taskDueDateFormat(
  1. DateTime dateTime
)

Implementation

String taskDueDateFormat(DateTime dateTime) {
  return DateFormat('dd/MM/yyyy').format(dateTime);
}