bold static method

Future<void> bold()

bold

With this method you can bold a string very easy, just put this method before a printText and everyting after this mehod will be bold

Implementation

static Future<void> bold() async {
  final List<int> boldOn = [27, 69, 1];

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