isBold method

bool isBold(
  1. SelectionEntity item
)

是否加粗

Implementation

bool isBold(SelectionEntity item) {
  if (isHighLight(item)) {
    return true;
  } else {
    return item.hasCheckBoxBrother() && item.selectedList().isNotEmpty;
  }
}