encryptPassword function

String encryptPassword(
  1. String password
)

Implementation

String encryptPassword(String password) {
  return Encrypted(MD5Digest().process(Uint8List.fromList(utf8.encode(password)))).base16;
}