first property

E first

Implementation

E get first => _list.first;
void first=(E value)

Implementation

set first(E value) {
  _maybeCheckElement(value);
  _safeList.first = value;
}