getOtherFestivals method

List<String> getOtherFestivals()

Implementation

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