lineHeightAtEnd property

double lineHeightAtEnd

The line height at the selection end.

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

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

Implementation

double get lineHeightAtEnd => _lineHeightAtEnd;
void lineHeightAtEnd=(double value)

Implementation

set lineHeightAtEnd(double value) {
  if (_lineHeightAtEnd == value) {
    return;
  }
  _lineHeightAtEnd = value;
  markNeedsBuild();
}