add method
Adds a value to the list.
Implementation
void add(
T value, {
bool doNotifyListeners = true,
}) {
_value.add(value);
if (doNotifyListeners) {
notifyListeners();
}
}
Adds a value to the list.
void add(
T value, {
bool doNotifyListeners = true,
}) {
_value.add(value);
if (doNotifyListeners) {
notifyListeners();
}
}