add method

  1. @override
void add(
  1. T value
)
override

Adds value to the end of this list, extending the length by one.

The list must be growable.

Implementation

@override
void add(T value) {
  super.value.add(value);
  if (notifyOnChangeList) {
    notifyListeners();
  }
}