getTimes method
Implementation
List<LunarTime> getTimes() {
List<LunarTime> l = <LunarTime>[];
l.add(LunarTime.fromYmdHms(_year, _month, _day, 0, 0, 0));
for (int i = 0; i < 12; i++) {
l.add(LunarTime.fromYmdHms(_year, _month, _day, (i + 1) * 2 - 1, 0, 0));
}
return l;
}