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