JSet<E> constructor

JSet<E>(
  1. Set value, {
  2. String clsName = _jSetCls,
  3. InitSubclass init = _new,
})

Implementation

JSet(Set value, {String clsName = _jSetCls, InitSubclass init = _new})
    : super(value, _new, clsName) {
  value = Set.of(value);
}