Reads the session data from cookies
@override /// Reads the session data from cookies String? read(Context ctx) { Cookie? cook = ctx.cookies[cookieName]; if (cook == null) { return null; } return cook.value; }