JaguarSessionManager constructor
JaguarSessionManager({})
Constructs a new JaguarSessionManager with given cookieName
, expiry
and signerKey
.
Implementation
JaguarSessionManager(
{this.expiry, String? signerKey, this.io = const SessionIoCookie()})
: coder = JaguarMapCoder(
signer:
signerKey != null ? Hmac(sha256, signerKey.codeUnits) : null);