Convert the given List<int> into a hex string representation of the low 8 bits of each int.
List<int>
String toByteHexString({String delimiter = ""}) => map((e) => e.toHex(2).toUpperCase()).join(delimiter);