unselectAll method
void
unselectAll()
Unselect all buttons in checkbox type and only one selected button in radio type
Implementation
void unselectAll() {
_selectedIndex = null;
_selectedIndexes.clear();
notifyListeners();
}