Get a specific cookie by name Returns the cookie value or null if not found
Future<String?> getCookie(String name) async { final cookies = await getCookies(); return cookies[name]; }