addValue method

void addValue(
  1. V item
)

Implementation

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