printText method

Future<bool> printText({
  1. required String text,
  2. int size = 1,
  3. int align = 1,
  4. int paperWidth = 52,
  5. bool isLabel = false,
  6. bool tear = true,
})

Print text

Implementation

Future<bool> printText({
  required String text,
  int size = 1,
  int align = 1,
  int paperWidth = 52,
  bool isLabel = false,
  bool tear = true,
}) {
  throw UnimplementedError('printText() has not been implemented.');
}