imprimirTexto method

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

Implementation

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