selectionEndpoints property Null safety
The text selection positions of selection start and end.
Implementation
List<TextSelectionPoint> get selectionEndpoints => _selectionEndpoints;
Implementation
set selectionEndpoints(List<TextSelectionPoint> value) {
if (!listEquals(_selectionEndpoints, value)) {
_markNeedsBuild();
}
_selectionEndpoints = value;
}