arabicEMonth function

String arabicEMonth(
  1. dynamic month
)

String method arabicEMonth takes the variable month and return String value MonthName

Implementation

String arabicEMonth(var month) {
  switch (month) {
    case 1:
      return "يناير";
    case 2:
      return "فبراير";
    case 3:
      return "مارس";
    case 4:
      return "ابريل";
    case 5:
      return "مايو";
    case 6:
      return "يونيو";
    case 7:
      return "يوليو";
    case 8:
      return "أغسطس";
    case 9:
      return "سبتمبر";
    case 10:
      return "أكتوبر";
    case 11:
      return "نوفمبر";
    case 12:
      return "ديسمبر";
    default:
      return "";
  }
}