lineHeight property

double? get lineHeight

Implementation

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

Implementation

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