isSelected method

bool isSelected(
  1. String id
)

Returns true if the item with the given id is selected.

Implementation

bool isSelected(String id) {
  return value.contains(id);
}