labelLocateAuto static method

Future<void> labelLocateAuto({
  1. int labelHeight = 0,
  2. int labelGap = 0,
})

Auto locate label. This method only can be called on the system that has performed abel learning by labelDetectAuto

Implementation

static Future<void> labelLocateAuto({int labelHeight = 0, int labelGap = 0}) {
  return NyxPrinterPlatform.instance
      .labelLocateAuto(labelHeight: labelHeight, labelGap: labelGap);
}