append method

Iterable<T> append(
  1. T element
)

Insert element at the end of the Iterable.

Implementation

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