drawHBarcode method
Implementation
@override
void drawHBarcode(String str, int align, int type, int height) {
var map = HashMap<String, Object>();
map["data"] = str;
map["align"] = align;
map["type"] = type;
map["height"] = height;
methodChannel.invokeMethod("drawHBarcode", map);
}