lineHeight property

double? lineHeight

Implementation

double? get lineHeight => _lineHeight;
void lineHeight=(double? value)

Implementation

set lineHeight(double? value) {
  if (lineHeight == value) return;
  _lineHeight = value;
}