Computes a SHA-256 hash of content and returns it as a hex string.
content
String revisionHash(String content) { final bytes = Uint8List.fromList(utf8.encode(content)); return sha256.convert(bytes).toString(); }