formatDateMonthAndDate static method

String formatDateMonthAndDate(
  1. DateTime date
)

Implementation

static String formatDateMonthAndDate(DateTime date) {
  return DateFormat('MMM d').format(date).toUpperCase();
}