add method

void add(
  1. T item
)

Implementation

void add(T item) {
  _value.add(item);
  update();
}