SplitList<T>.fromIterable constructor
SplitList<T>.fromIterable (
- Iterable<
T> x
Implementation
factory SplitList.fromIterable(Iterable<T> x) {
var t = _createSplitList(x.toList(growable: false));
return new SplitList(t.item1.toList(), t.item2.toList());
}