toList method

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

Returns a list containing the elements of this set.

This is a non-mutating operation that creates a new list.

Implementation

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