unselectIndex method

void unselectIndex(
  1. int i
)

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();
}