genMd5 function

String genMd5(
  1. String data
)

Implementation

String genMd5(String data) => crypto.md5.convert(utf8.encode(data)).toString();