Get a string value with a fallback
String? getString(String name, {String? defaultValue}) { return get<String>(name) ?? defaultValue; }