encodeHex static method
Encodes bytes as lowercase hexadecimal without a prefix.
Implementation
static String encodeHex(Uint8List value) {
final output = StringBuffer();
for (final byte in value) {
output.write(byte.toRadixString(16).padLeft(2, '0'));
}
return output.toString();
}