formatDateMonth static method

String formatDateMonth(
  1. DateTime date
)

Implementation

static String formatDateMonth(DateTime date) {
  return dateMonthFormat.format(date.toLocal());
}