generateMd5 property
String
get
generateMd5
Generates the MD5 hash of the current string. Returns the hash as a hexadecimal string.
Implementation
String get generateMd5 {
return md5.convert(utf8.encode(this)).toString();
}