byteToHex static method

String byteToHex(
  1. List<int> bytes
)

Converts a Uint8List to a hex string

Implementation

static String byteToHex(List<int> bytes) {
  return HEX.encode(bytes).toUpperCase();
}