erase_line method

void erase_line([
  1. int type = 0
])

Erases the Line

Implementation

void erase_line([
  final int type = 0,
]) {
  write_ansi(
    '${type}K',
  );
}