fallback method
The regression query for configuration not found during runtime configuration.
Implementation
@override
String? fallback(String keys) {
if (bool.hasEnvironment(keys)) {
return String.fromEnvironment(keys);
}
return null;
}