unselectIndex method
Unselect button by index in checkbox and radio type
Implementation
void unselectIndex(int i) {
if (_isDisabled(i, withCallBack: true)) {
return;
}
_selectedIndex = null;
_selectedIndexes.remove(i);
notifyListeners();
}