bytesToHexStr method

String bytesToHexStr (Uint8List bytes)

Implementation

static String bytesToHexStr(Uint8List bytes) {
  return hex.encode(bytes.toList());
}