formatDateInDayDateMonthAtTimeNew static method

String formatDateInDayDateMonthAtTimeNew(
  1. DateTime time
)

Formats a DateTime object into a string 'EEE MMM dd, yyyy'. Example: 'Wed, Nov 29, 2023'.

Implementation

static String formatDateInDayDateMonthAtTimeNew(DateTime time) {
  return DateFormat('EEE MMM dd, yyyy').format(time);
  // DateFormat.jm
}