selectionEnd property

int? get selectionEnd
inherited

Implementation

int? get selectionEnd => _selectionEnd;
set selectionEnd (int? value)
inherited

Implementation

set selectionEnd(int? value) {
  if (value != null) {
    _selectionEnd = value;
  }
}