selectionWidthStyle property

BoxWidthStyle get selectionWidthStyle
inherited

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

See ui.BoxWidthStyle for details on available styles.

Implementation

ui.BoxWidthStyle get selectionWidthStyle =>
    _selectionPainter.selectionWidthStyle;
set selectionWidthStyle (BoxWidthStyle value)
inherited

Implementation

set selectionWidthStyle(ui.BoxWidthStyle value) {
  _selectionPainter.selectionWidthStyle = value;
}