SessionManager constructor
const
SessionManager({
- SessionAdapter adapter = const MemorySessionAdapter(),
- String name = defaultSessionName,
- String? domain,
- String? path,
- bool secure = false,
- bool httpOnly = true,
- SessionIdentifierGenerator identifierGenerator = generateIdentifier,
Implementation
const SessionManager({
this.adapter = const MemorySessionAdapter(),
this.name = defaultSessionName,
this.domain,
this.path,
this.secure = false,
this.httpOnly = true,
this.identifierGenerator = generateIdentifier,
});