判断某一个宫位三方四正是否不包含目标星耀,必须要全部都不在三方四正内含才会返回true @stars 星耀名称,可以包含 主星,辅星,杂星 @return true / false
@override bool notHave(List<StarName> stars) { // TODO: implement notHave return notSurroundedByStars(this, stars); }