selectionWidthStyle property

  1. @override
BoxWidthStyle selectionWidthStyle
override

Controls how wide the selection highlight boxes are computed to be.

See ui.BoxWidthStyle for details on available styles.

Implementation

@override
ui.BoxWidthStyle get selectionWidthStyle => _selectionWidthStyle;
void selectionWidthStyle=(BoxWidthStyle value)

Implementation

set selectionWidthStyle(ui.BoxWidthStyle value) {
  if (_selectionWidthStyle == value) {
    return;
  }
  _selectionWidthStyle = value;
  markNeedsPaint();
}