LabeledList<E> constructor

LabeledList<E>()

An implementation of list that accepts an optional label with every element added to the list.

Implementation

LabeledList()
    : _labels = UniqueList<String?>.strict(),
      super(<E>[], growable: true);