unPick method

void unPick(
  1. int index
)

Implementation

void unPick(int index) {
  debugPrint("unPick $index");
  picked.removeAt(index);
  pickedNotifier.value = picked;
  pickedNotifier.notifyListeners();
  notifyListeners();
}