getOrDefault<T> method
Gets a configuration value with a default fallback
key The configuration key
defaultValue The default value if key is not found
Returns the configuration value or default
Implementation
@override
T getOrDefault<T>(String key, T defaultValue) {
final config = _getAuthConfig();
return config[key] as T? ?? defaultValue;
}