getItemSelectionStyle function

dynamic getItemSelectionStyle(
  1. bool isSelect
)

Implementation

getItemSelectionStyle(bool isSelect) {
  return TextStyle(
      fontWeight: isSelect ? FontWeight.w700 : FontWeight.w400, color:  black, fontSize: contentSize);
}