printTableText static method

Future<void> printTableText(
  1. List<String> texts,
  2. List<int> weights,
  3. List<PrintTextStyle> styles
)

Print a row of a table

Implementation

static Future<void> printTableText(
    List<String> texts, List<int> weights, List<PrintTextStyle> styles) {
  return NyxPrinterPlatform.instance.printTableText(texts, weights, styles);
}