Tries to get a configuration value for the specified key.
@override (bool, String?) tryGet(String key) { var value = _config[key]; if (value != null) { return (true, value); } return (false, null); }