toList method

  1. @override
  2. @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
@override
List<T> toList({bool growable = true}) => value.toList(growable: growable);