selectionEndPoints property

List<TextSelectionPoint>? selectionEndPoints

The text selection positions of selection start and end.

Implementation

List<TextSelectionPoint>? get selectionEndPoints => _selectionEndPoints;
void selectionEndPoints=(List<TextSelectionPoint>? value)

Implementation

set selectionEndPoints(List<TextSelectionPoint>? value) {
  if (!listEquals(_selectionEndPoints, value)) {
    _markNeedsBuild();
  }
  _selectionEndPoints = value;
}