selectionText property

String? get selectionText

The text for the context selection, if any.

Implementation

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

Implementation

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