getMonthName static method

String getMonthName(
  1. DateTime date
)

Implementation

static String getMonthName(DateTime date) {
  return DateFormat('MMMM').format(date);
}