getMonth static method

String getMonth(
  1. DateTime date
)

Implementation

static String getMonth(DateTime date) {
  try {
    return DateFormat.MMM().format(date);
  } catch (e) {
    return '';
  }
}