Adds item to the end of this list, extending the length by one.
item
@override void add(T item, {bool notify = true}) { super.add(item); if (notify) notifyListeners(); }