ListSet<T>.empty constructor

ListSet<T>.empty()

Implementation

ListSet.empty() {
  _set = HashSet();
  _list = List.empty(growable: false);
}