deselectAll method Null safety

void deselectAll()

Implementation

void deselectAll() {
  _cowGroups = _cowGroups.map((e) {
    e.isSelected = false;
    return e;
  }).toList();

  notifyListeners();
}