toList method

  1. @override
List<T> toList (
  1. {bool growable: true}
)
override

Creates a List containing the elements of this Iterable.

The elements are in iteration order. The list is fixed-length if growable is false.

Implementation

@override
List<T> toList({bool growable = true}) {
  if (_isCached) {
    if (growable) return _cache;
    return List.unmodifiable(_cache);
  }
  return super.toList(growable: growable);
}