getOtherFestivals method

List<String> getOtherFestivals()

获取非正式的节日,有可能一天会有多个节日 @return 非正式的节日列表,如中元节

Implementation

List<String> getOtherFestivals() {
  List<String> l = <String>[];
  List<String>? fs = SolarUtil.OTHER_FESTIVAL['$_month-$_day'];
  if (null != fs) {
    l.addAll(fs);
  }
  return l;
}