startHandleType property
The type of start selection handle.
Changing the value while the handles are visible causes them to rebuild.
Implementation
TextSelectionHandleType get startHandleType => _startHandleType;
Implementation
set startHandleType(TextSelectionHandleType value) {
if (_startHandleType == value) {
return;
}
_startHandleType = value;
markNeedsBuild();
}