isDayZhaiGuanYin method

bool isDayZhaiGuanYin()

Implementation

bool isDayZhaiGuanYin() {
  String k = '${getMonth()}-${getDay()}';
  for (String d in FotoUtil.DAY_ZHAI_GUAN_YIN) {
    if (k == d) {
      return true;
    }
  }
  return false;
}