labels property

List<String?> labels

Returns a list containing all of the labels mapped to this list.

Note: This getter constructs a new list from the underlying list of labels. Any changes made to it will not affect the underlying list.

Implementation

List<String?> get labels => _labels.toList(growable: growable);