hexString static method
Implementation
static String hexString(Uint8List bytes, [int offset = 0, int? length]) {
final int end = length == null ? bytes.length : offset + length;
final StringBuffer buffer = StringBuffer();
for (int i = offset; i < end; i++) {
buffer.write(_hexStrings[bytes[i] & 0xFF]);
}
return buffer.toString();
}