addValue method

void addValue(
  1. V item
)

Implementation

void addValue(V item) {
  value = Set<V>.from(value)..add(item);
}