cursorPrecedingLine method

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

Implementation

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