validate method
Validates the SessionSettings configuration. Returns null if valid, or an error message if invalid.
Implementation
String? validate() {
if (idleTimeoutPeriod < 0) {
return 'Idle timeout period cannot be negative';
}
return null;
}