isBold method
是否加粗
Implementation
bool isBold(SelectionEntity item) {
if (isHighLight(item)) {
return true;
} else {
return item.hasCheckBoxBrother() && item.selectedList().isNotEmpty;
}
}
是否加粗
bool isBold(SelectionEntity item) {
if (isHighLight(item)) {
return true;
} else {
return item.hasCheckBoxBrother() && item.selectedList().isNotEmpty;
}
}