do97 static method

Uint8List do97(
  1. int ne
)

Implementation

static Uint8List do97(final int ne) {
  if(ne == 256 || ne == 65536) {
    return _buildDO(tagDO97, Uint8List(ne == 256 ? 1 : 2));
  }
  return _buildDO(tagDO97, Utils.intToBin(ne, minLen: 0));
}