static String extractValue(RegExp pattern, String response) { Match? match = pattern.firstMatch(response); return match?.group(1) ?? 'Value not found'; }