TestOutputBuffer constructor

TestOutputBuffer(
  1. TestTerminal terminal
)

Implementation

TestOutputBuffer(this.terminal)
    : _styleGrid = List.generate(
        terminal.height,
        (_) => List.filled(terminal.width, null),
      );