Returns the sha256 hash of input in hex notation.
input
String sha256ofString(String input) { final bytes = utf8.encode(input); final digest = sha256.convert(bytes); return digest.toString(); }