TermareController constructor

TermareController({
  1. TermareStyle? theme,
  2. int row = 25,
  3. int column = 80,
  4. bool showBackgroundLine = false,
  5. String fontFamily = 'packages/termare_view/DroidSansMono',
  6. String? terminalTitle,
})

Implementation

TermareController({
  this.theme,
  this.row = 25,
  this.column = 80,
  this.showBackgroundLine = false,
  this.fontFamily = 'packages/termare_view/DroidSansMono',
  this.terminalTitle,
}) {
  theme ??= TermareStyles.vsCode;
  mainBuffer = Buffer(this);
  _alternateBuffer = Buffer(this);
  currentBuffer = mainBuffer;
}