Get an integer value with a fallback
int? getInt(String name, {int? defaultValue}) { return get<int>(name) ?? defaultValue; }