startHandleType property

TextSelectionHandleType startHandleType

The type of start selection handle.

Changing the value while the handles are visible causes them to rebuild.

Implementation

TextSelectionHandleType get startHandleType => _startHandleType;
void startHandleType=(TextSelectionHandleType value)

Implementation

set startHandleType(TextSelectionHandleType value) {
  if (_startHandleType == value) {
    return;
  }
  _startHandleType = value;
  markNeedsBuild();
}