checkMaxSelectionCount static method
entity
传入当前点击的 Item
!!! 在设置 isSelected = true之前进行 check。
返回 true 符合条件,false 不符合条件
Implementation
static bool checkMaxSelectionCount(SelectionEntity entity) {
return entity.getLimitedRootSelectedChildCount() <
entity.getLimitedRootMaxSelectedCount();
}