getRecommendedFastingDays static method

List<int> getRecommendedFastingDays(
  1. int month
)

Gets the recommended fasting days in a month

Implementation

static List<int> getRecommendedFastingDays(int month) {
  switch (month) {
    case 1: // Muharram
      return [9, 10, 11]; // 9th, Ashura, and 11th
    case 8: // Sha'aban
      return [13, 14, 15]; // White days
    case 11: // Dhu Al-Qi'dah
      return [13, 14, 15]; // White days
    default:
      return [13, 14, 15]; // White days (every month)
  }
}