lineHeightAtEnd property
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;
Implementation
set lineHeightAtEnd(double value) {
if (_lineHeightAtEnd == value) {
return;
}
_lineHeightAtEnd = value;
markNeedsBuild();
}