toDayMonthYearDash static method

String toDayMonthYearDash(
  1. DateTime date
)

Implementation

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