isMaxSelectionsReached method
Implementation
bool isMaxSelectionsReached() {
if (widget.maxSelection != null) {
int selectedItems = list.where((element) => element.isSelect).length;
return selectedItems >= widget.maxSelection!;
}
return false;
}