getZhiXing method
Implementation
String getZhiXing() {
int offset = _dayZhiIndex - _monthZhiIndex;
if (offset < 0) {
offset += 12;
}
return LunarUtil.ZHI_XING[offset + 1];
}
String getZhiXing() {
int offset = _dayZhiIndex - _monthZhiIndex;
if (offset < 0) {
offset += 12;
}
return LunarUtil.ZHI_XING[offset + 1];
}