static Future<String> md5File(String path) async { var bytes = await File(path).readAsBytes(); return md5(bytes); }