getBarcodeBmp method
Implementation
@override
Future<Uint8List?> getBarcodeBmp(String data, int barcodeFormat,
int errorCorrectionLevel, int width, int height) async {
var methodName = 'getBarcodeBmp';
var params = {
'data': data,
"barcodeFormat": barcodeFormat,
"errorCorrectionLevel": errorCorrectionLevel,
"width": width,
"height": height
};
return await methodChannel.invokeMethod<Uint8List>(methodName, params);
}