add method

void add(
  1. T value, {
  2. bool doNotifyListeners = true,
})

Adds a value to the list.

Implementation

void add(
  T value, {
  bool doNotifyListeners = true,
}) {
  _value.add(value);
  _checkAndRemoveLowerDifference();
  if (doNotifyListeners) {
    notifyListeners();
  }
}