cursorNextLine method

  1. @override
void cursorNextLine(
  1. int amount
)
override

Implementation

@override
void cursorNextLine(int amount) {
  _buffer.moveCursorY(amount);
  _buffer.setCursorX(0);
}