last property

IndexedListenableNode last
override

Set the last child in the list to value

Implementation

IndexedListenableNode get last => super.last as IndexedListenableNode;
void last=(IndexedNode value)
override

Set the last child in the list to value

Implementation

set last(IndexedNode value) {
  this.last = value;
  _notifyListeners();
}