lineHeightAtStart property

double lineHeightAtStart

The line height at the selection start.

This value is used for calculating the size of the start selection handle.

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

Implementation

double get lineHeightAtStart => _lineHeightAtStart;
void lineHeightAtStart=(double value)

Implementation

set lineHeightAtStart(double value) {
  if (_lineHeightAtStart == value) {
    return;
  }
  _lineHeightAtStart = value;
  markNeedsBuild();
}