selectionHeightStyle property

BoxHeightStyle selectionHeightStyle

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

See ui.BoxHeightStyle for details on available styles.

Implementation

ui.BoxHeightStyle get selectionHeightStyle => _selectionHeightStyle;
void selectionHeightStyle=(BoxHeightStyle value)

Implementation

set selectionHeightStyle(ui.BoxHeightStyle value) {
  assert(value != null);
  if (_selectionHeightStyle == value) return;
  _selectionHeightStyle = value;
  notifyListeners();
}