drawHBarcode method

  1. @override
void drawHBarcode(
  1. String str,
  2. int align,
  3. int type,
  4. int height,
)
override

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);
}