isMD5 function
check if string input
is a md5 hash
also use isHash for more algorithms
Implementation
bool isMD5(String input) {
return _regExp.hasMatch(input);
}
check if string input
is a md5 hash
also use isHash for more algorithms
bool isMD5(String input) {
return _regExp.hasMatch(input);
}