getMonthInChinese method

String getMonthInChinese()

Implementation

String getMonthInChinese() =>
    (_month < 0 ? '闰' : '') + LunarUtil.MONTH[_month.abs()];