Get a cookie's value by name. Returns null if not found.
static Future<String?> getValue(String name) async { final cookie = await get(name); return cookie?.value; }