toList method

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

Creates a List containing the elements of this Iterable.

Implementation

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