toYearMonthDay static method

String toYearMonthDay(
  1. DateTime date
)

Implementation

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