addFirst method

Iterable<T> addFirst(
  1. T element
)

Implementation

Iterable<T> addFirst(T element) sync* {
  yield element;
  yield* this;
}