specialFestival property

String specialFestival

Implementation

String get specialFestival {
  List<String> specialFestival = specialFestivals;
  String text = "$year" + string;
  String solar = "";
  for (String special in specialFestival) {
    if (special.contains(text)) {
      solar = special.replaceAll(text, "");
      break;
    }
  }
  return solar;
}