formatDayDateMonthAndYear static method

String formatDayDateMonthAndYear(
  1. DateTime? date
)

Implementation

static String formatDayDateMonthAndYear(DateTime? date) {
  try {
    return DateFormat.yMMMEd().format(date!).toUpperCase();
  } catch (e) {
    return '';
  }
}