JList constructor

JList(
  1. List? list
)

Implementation

JList(List<dynamic>? list) {
  this.list = list ?? [];
}