getNomeMes static method

String getNomeMes(
  1. int mes
)

Implementation

static String getNomeMes(int mes) {
  var dataComMes = DateTime(0, mes);
  var nomeMes = DateFormat.MMMM('pt_BR').format(dataComMes).toUpperCase();
  return nomeMes;
}