formatMonth static method

String formatMonth(
  1. DateTime date
)

Implementation

static String formatMonth(DateTime date) {
  return month.format(date.toLocal());
}