getJList method

JList getJList(
  1. String key
)

Gets a JList that can be empty.

Implementation

JList getJList(String key) {
  // ignore: implicit_dynamic_list_literal
  return getJListOrNull(key) ?? JList([]);
}