String extractVersion(String url) { final match = RegExp(r'gradle-(.*?)-all\.zip').firstMatch(url); return match?.group(1) ?? ''; }