toList method

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

Creates a List containing the elements of this IList.

Implementation

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