byteToHex static method

String byteToHex(
  1. Uint8List bytes
)

Converts a Uint8List to a hex string

Implementation

static String byteToHex(Uint8List bytes) {
  return HEX.encode(bytes).toUpperCase();
}