1. reflectable
String computeDayClass(bool selected, bool other, bool today)

Source

@reflectable
String computeDayClass(bool selected,bool other,bool today) {
  StringBuffer sb = new StringBuffer("dayCell");
  if (selected) {
    sb.write(" daySelected");
  }
  if (other) {
    sb.write(" dayOther");
  }
  if (today) {
    sb.write(" dayToday");
  }
  return sb.toString();
}