md5 function

String md5(
  1. Uint8List bytes
)

Implementation

String md5(Uint8List bytes) {
  return crypto.md5.convert(bytes).toString();
}