md5 method

String md5(
  1. String input
)

Implementation

String md5(String input) {
  return Hashing.llMD5String(input, 0);
}