toFixedList method

List<T> toFixedList()

Creates a fixed-length List containing the elements of this Iterable.

Implementation

List<T> toFixedList() => toList(growable: false);