getFestivals method
Implementation
List<FotoFestival> getFestivals() {
List<FotoFestival> l = <FotoFestival>[];
List<FotoFestival>? fs = FotoUtil.FESTIVAL['${getMonth().abs()}-${getDay()}'];
if (null != fs) {
l.addAll(fs);
}
return l;
}