resetBold static method

Future<void> resetBold()

resetBold

This method will just reset the bold to a normal font weight

Implementation

static Future<void> resetBold() async {
  final List<int> boldOff = [27, 69, 0];

  await printRawData(Uint8List.fromList(boldOff));
}