getSignByLunarDate function
通过农历获取星座
Implementation
String getSignByLunarDate(String lunarDateStr, bool? isLeapMonth) {
final solarDate = lunar2Solar(lunarDateStr, isLeapMonth ?? false);
return getSignBySolarDate(solarDate.toString());
}
通过农历获取星座
String getSignByLunarDate(String lunarDateStr, bool? isLeapMonth) {
final solarDate = lunar2Solar(lunarDateStr, isLeapMonth ?? false);
return getSignBySolarDate(solarDate.toString());
}