toList method

view source

List<List<T>> toList ({bool growable: true}) inherited

Implementation

List<E> toList({bool growable = true}) {
  return List<E>.of(this, growable: growable);
}