withEnd method
This iterable with end at the end.
Implementation
Iterable<E> withEnd(E end) sync* {
for (final e in this) {
yield e;
}
yield end;
}
This iterable with end at the end.
Iterable<E> withEnd(E end) sync* {
for (final e in this) {
yield e;
}
yield end;
}