getMonthPositionTaiSui method
Implementation
String getMonthPositionTaiSui([int sect = 2]) {
int monthZhiIndex;
int monthGanIndex;
switch (sect) {
case 3:
monthZhiIndex = _monthZhiIndexExact;
monthGanIndex = _monthGanIndexExact;
break;
default:
monthZhiIndex = _monthZhiIndex;
monthGanIndex = _monthGanIndex;
}
return _getMonthPositionTaiSui(monthZhiIndex, monthGanIndex);
}