explicitWidth property

int? get explicitWidth

Optional explicit terminal-cell width.

Implementation

int? get explicitWidth => _width;
set explicitWidth (int? value)

Implementation

set explicitWidth(int? value) {
  _validateExtent(value, 'width');
  if (value == _width) return;
  _width = value;
  markNeedsLayout();
}