clear method

Future<void> clear()

Clears the display buffer.

Implementation

Future<void> clear() async {
  await frame.runLua(
    'frame.display.text(" ",1,1);frame.display.show()',
    checked: false,
  );
}