yearMonthDayFormatUSWith static method

String yearMonthDayFormatUSWith(
  1. DateTime date
)

Implementation

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