hexEncode function

String hexEncode(
  1. Uint8List raw
)

hexEncode returns the hexadecimal encoding of raw.

Implementation

String hexEncode(Uint8List raw) {
  return hex.encode(raw).toLowerCase();
}