textStyle property

Implementation

TerminalLibraryFlutterStyle get textStyle => _textStyle;
set textStyle (TerminalLibraryFlutterStyle value)

Implementation

set textStyle(TerminalLibraryFlutterStyle value) {
  if (value == _textStyle) return;
  _textStyle = value;
  _cellSize = _measureCharSize();
  _paragraphCache.clear();
}