lineHeightAtStart property Null safety
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;
Implementation
set lineHeightAtStart(double value) {
if (_lineHeightAtStart == value) {
return;
}
_lineHeightAtStart = value;
_markNeedsBuild();
}