printText method

Future<PrinterStatus> printText(
  1. String text,
  2. bool finishPrinting, {
  3. TextOptions? options,
  4. int size = defaultFontSize,
  5. Font? font,
  6. AlignmentTypes align = AlignmentTypes.left,
})

Implementation

Future<PrinterStatus> printText(String text, bool finishPrinting,
    {TextOptions? options,
    int size = defaultFontSize,
    Font? font,
    AlignmentTypes align = AlignmentTypes.left}) {
  throw UnimplementedError('"printText" has not been implemented.');
}