title property

String? get title

The text to display in the item; this is required unless type is separator. When the context is selection, use %s within the string to show the selected text. For example, if this parameter's value is "Translate '%s' to Pig Latin" and the user selects the word "cool", the context menu item for the selection is "Translate 'cool' to Pig Latin".

Implementation

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

Implementation

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