hexEncodeToString static method

String hexEncodeToString(
  1. Uint8List raw
)

Implementation

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