String getString(String path, [String defaultValue = '']) { final value = get(path); if (value is String) return value; return defaultValue; }