toList method

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

Creates a mutable List containing the elements of this list.

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

Implementation

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