reset static method

List<int> reset()

Reset printed

Implementation

static List<int> reset() {
  String reset = '\x1B@';

  List<int> bytes = [];
  bytes += reset.codeUnits;
  return bytes;
}