yjyHikFunctionPrintTextByBarcode method
Future<String?>
yjyHikFunctionPrintTextByBarcode(
- String name,
- String time,
- String orderNum,
- String base64Str,
- int width,
- int height,
- int m,
- int p,
- String st,
- 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;
}