yjyHikFunctionPrintTextByBarcode method

  1. @override
Future<String?> yjyHikFunctionPrintTextByBarcode(
  1. String name,
  2. String time,
  3. String orderNum,
  4. String base64Str,
  5. int width,
  6. int height,
  7. int m,
  8. int p,
  9. String st,
  10. String ft,
)
override

Implementation

@override
Future<String?> yjyHikFunctionPrintTextByBarcode(
    String name,
    // String value,
    String time,
    String orderNum,
    String base64Str,
    int width,
    int height,
    int m,
    int p,
    String st,
    String ft) async {
  final result = await methodChannel
      .invokeMethod<String>('yjyHikFunctionPrintTextByBarcode', {
    "name": name,
    // "value": value,
    "time": time,
    "orderNum": orderNum,
    "base64Str": base64Str,
    "width": width,
    "height": height,
    "m": m,
    "p": p,
    "st": st,
    "ft": ft
  });
  return result;
}