first property

*<Null safety>*

E first

inherited

Implementation

@override
E get first => _base.first;

first= (E value)
inherited

Implementation

@override
set first(E value) {
  if (isEmpty) throw RangeError.index(0, this);
  this[0] = value;
}