linkedSetFrom<T> function
Returns a new LinkedHashSet based on elements
.
Elements of the set are iterated in the order they were specified.
Implementation
KtLinkedSet<T> linkedSetFrom<T>([Iterable<T> elements = const []]) =>
KtLinkedSet.from(elements);