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