bytesToHex static method

String bytesToHex(
  1. Uint8List raw
)

Creates a hex string from bytes raw.

Implementation

static String bytesToHex(Uint8List raw) {
  return hex.encode(raw);
}