explicitHeight property

int? get explicitHeight

Optional explicit terminal-cell height.

Implementation

int? get explicitHeight => _height;
set explicitHeight (int? value)

Implementation

set explicitHeight(int? value) {
  _validateExtent(value, 'height');
  if (value == _height) return;
  _height = value;
  markNeedsLayout();
}