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