getMonthAbbreviation function

String getMonthAbbreviation(
  1. int monthIndex
)

Implementation

String getMonthAbbreviation(int monthIndex) {
  const List<String> monthAbbreviations = [
    'Jan',
    'Feb',
    'Mar',
    'Apr',
    'May',
    'Jun',
    'Jul',
    'Aug',
    'Sep',
    'Oct',
    'Nov',
    'Dec',
  ];

  // Check if the monthIndex is within a valid range
  if (monthIndex >= 1 && monthIndex <= 12) {
    return monthAbbreviations[monthIndex - 1];
  } else {
    // Return an empty string or handle the error as needed
    return '';
  }
}