label property

String? get label

Text displayed in the menu for this item.

Implementation

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

Implementation

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