erase_display method

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

Erases the Display

Implementation

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