monthlyAbbrName static method

Map<int, String> monthlyAbbrName()

The abbreviation of the months name

Implementation

static Map<int, String> monthlyAbbrName(){
  return {
    1:  "januaryAbbr",
    2:  "februaryAbbr",
    3:  "marchAbbr",
    4:  "aprilAbbr",
    5:  "mayAbbr",
    6:  "juneAbbr",
    7:  "julyAbbr",
    8:  "augustAbbr",
    9:  "septemberAbbr",
    10: "octoberAbbr",
    11: "novemberAbbr",
    12: "decemberAbbr",
  };
}