session property
Set by the session manager whenever the current active session changes.
Implementation
@override
DescopeSession? get session => _session;
Set by the session manager whenever the current active session changes.
Implementation
@override
set session(DescopeSession? session) {
if (session == _session) return;
_session = session;
if (session == null) {
stopTimer();
} else {
startTimer();
}
}