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