enqueue static method

dynamic enqueue(
  1. String text,
  2. PrintAlignment alignment,
  3. int size,
  4. int typeface,
)

Enqueue text and its style but does not print

Implementation

static enqueue(
    String text, PrintAlignment alignment, int size, int typeface) {
  _printer!.enqueue(text, alignment, size, typeface);
}