JList<E> constructor

JList<E>(
  1. List value, {
  2. String clsName = _jListCls,
  3. InitSubclass init = _new,
})

Implementation

JList(List value, {String clsName = _jListCls, InitSubclass init = _new})
    : super(value, _new, clsName) {
  value = List.of(value, growable: false);
}