KtHashSet<T>.from constructor

KtHashSet<T>.from([
  1. Iterable<T> elements = const []
])

Implementation

factory KtHashSet.from([Iterable<T> elements = const []]) {
  return DartHashSet<T>(elements);
}