Reads an integer for key or returns 0.
key
0
static int getInt(String key) { final int? value = _prefs.getInt(key); return value ?? 0; }