label property

String? get label

Short string displayed to next to the candidate, often the shortcut key or index

Implementation

String? get label => _wrapped.label;
set label (String? v)

Implementation

set label(String? v) {
  _wrapped.label = v;
}