bytesToHex method Null safety
- Uint8List raw
Creates a hex string from bytes raw
.
Implementation
static String bytesToHex(Uint8List raw) {
return hex.encode(raw);
}
Creates a hex string from bytes raw
.
static String bytesToHex(Uint8List raw) {
return hex.encode(raw);
}