getMonthPositionTaiSui method

String getMonthPositionTaiSui([
  1. int sect = 2
])

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);
}