Reads an integer value by key.
key
int getInt(String key, {int fallback = 0}) { return int.tryParse(get(key) ?? '') ?? fallback; }