printBarCode method

  1. @override
Future<Void?> printBarCode(
  1. String data,
  2. int symbology,
  3. int height,
  4. int width,
)
override

Implementation

@override
Future<Void?> printBarCode(String data, int symbology, int height, int width) async{
  await methodChannel.invokeMethod<String>('printPic',{"data":data,"symbology":symbology,"height":height,"width":width});
}