Future<String> computeFileHash(File file) async { final bytes = await file.readAsBytes(); return md5.convert(bytes).toString(); }