getMonths function

List<String> getMonths()

Implementation

List<String> getMonths() {
  return <String>[

    "Janeiro",
    "Fevereiro",
    "Março",
    "Abril",
    "Maio",
    "Junho",
    "Julho",
    "Agosto",
    "Setembro",
    "Outubro",
    "Novembro",
    "Dezembro",

  ];
}