hardAdd method
void
hardAdd(
- T value
Adds the given value to the list and notifies listeners.
value: The value to add to the list.
Implementation
void hardAdd(T value) {
this.value.add(value);
notify();
}