addHW method
Implementation
Iterable<BarcodeHMBar> addHW(int code, int len) sync* {
for (int index = 0; index < len; index++) {
yield fromBits((code >> index * 2) & 3);
}
}
Iterable<BarcodeHMBar> addHW(int code, int len) sync* {
for (int index = 0; index < len; index++) {
yield fromBits((code >> index * 2) & 3);
}
}