add method

void add(
  1. E value
)

Implementation

void add(E value) {
  this.value.add(value);
  set(this.value, force: true);
}