labelAddBarCode method
Implementation
@override
Future<void> labelAddBarCode(String barCode, {LabelBarCodeStyle? barCodeStyle}) async {
Map<String, dynamic> arguments = <String, dynamic>{
"barCode":barCode,
"barCodeStyle": barCodeStyle?.toMap(),
};
await methodChannel.invokeMethod<void>('labelAddBarCode', arguments);
}