height property Null safety

double height

The vertical space required to paint this text.

Valid only after layout has been called.

Implementation

double get height {
  assert(_debugAssertTextLayoutIsValid);
  return _applyFloatingPointHack(_paragraph!.height);
}