bytesToHex function

String bytesToHex(
  1. Uint8List bytes
)

Implementation

String bytesToHex(Uint8List bytes) {
  return hex.encode(bytes).toUpperCase();
}