md5Hash static method

String md5Hash(
  1. String input
)

This will generate the md5 bytes and hash it using #bytes2Hash

Implementation

static String md5Hash(String input) {
  return bytes2Hash(md5SumStr(input));
}