getItemTextStyle method
Implementation
TextStyle? getItemTextStyle() {
if (isHighLight(item)) {
return const TextStyle(color: Color(0xFF0984F9), fontSize: 14.0, fontWeight: FontWeight.w600);
} else if (isBold(item)) {
return const TextStyle(color: Color(0xFF222222), fontSize: 14.0, fontWeight: FontWeight.w600);
}
return const TextStyle(color: Color(0xFF222222), fontSize: 14.0);
}