selectOption method

void selectOption(
  1. AskUserChoice option
)

Implementation

void selectOption(AskUserChoice option) {
  if (selectedOptions.contains(option)) {
    selectedOptions.remove(option);
  } else {
    selectedOptions.add(option);
  }
  selectedOptions.refresh();
  update();
}