toByteHexString method

String toByteHexString({
  1. String delimiter = "",
})

Convert the given List<int> into a hex string representation of the low 8 bits of each int.

Implementation

String toByteHexString({String delimiter = ""}) =>
    map((e) => e.toHex(2).toUpperCase()).join(delimiter);